Re: File manipulating with FMPro fields
Re: File manipulating with FMPro fields
- Subject: Re: File manipulating with FMPro fields
- From: "Ray Newton" <email@hidden>
- Date: Wed, 04 Apr 2001 08:48:31 -0700
- Organization: tha
Maybe you could use appleScript directly, and avoid the complications of other applications.
set folderPath to "Utopia1:MTS:"
tell application "Finder"
set foundFileList to every item of the entire contents of folder folderPath whose name is searchFileName
end tell
From there you can walk through the foundFileList and check for duplicate file and folder names, check file types, mod dates, etc.