Re: Selecting a file by creator
Re: Selecting a file by creator
- Subject: Re: Selecting a file by creator
- From: Bill Briggs <email@hidden>
- Date: Wed, 25 Apr 2001 13:06:49 -0300
At 10:54 AM -0400 25/04/01, Kevin Diffily wrote:
select (every file whose file creator is "CSOm")
move selection to chosen_folder
In great haste...
At least a couple of syntax errors.
tell application "Finder"
move (every file of folder "foo" of disk "foodisk" whose creator type
is "CSOm") to chosen_folder
end tell
Note that you have to specify where the files are. No need to use
selection in the script.
- web