# Application RwdTinker orginally (c) 2004 Steven Gibson under GPL. # this code is to list the applets that are installed def listinstalledfiles fileList = Dir.new("installed").entries.sort.reverse.delete_if { |x| ! (x =~ /inf$/) } @filesresult = fileList.rwd_method("fillappletname") end def fillappletname(inffile) applet = inffile.gsub(/\.inf$/, "") @a_installlist = applet @a_removeapplet = applet end