Hello !
I have a problem that really is killing me... i´m trying to
what i want is a script that scans thro everything from a topfolder and down the hierarcy and only reports the folders that contains files, not folders...
This is so far i got.. not really even close... doesn´t even do recursive...
Anyone got a clue how to approach this problem ?
/ S
set theFolder to "PB G4 Ster:Users:stefan:Desktop:test:"
tell application "Finder" activate set filelist to (list folder theFolder without invisibles) repeat with i from 1 to (count items in filelist)
set theFile_infolder to item i of filelist set fullpath to (theFolder & theFile_infolder) display dialog fullpath
end repeat
end tell |