Re: Copy/Move a file in X
Re: Copy/Move a file in X
- Subject: Re: Copy/Move a file in X
- From: email@hidden
- Date: Fri, 30 Nov 2001 17:55:16 -0500
At 12.53 pm -0800 30/11/01, Andrew Laurence wrote:
Hi all,
A painfully simple question... In Mac OS X, how do you copy/move a
file with AppleScript? The Finder's 'move' command yields a error
type -15267, and Jons Commands isn't ported yet.
Any suggestions from the collective consciousness?
Thanks,
Andrew
The following has worked for me under OSX 10.1.1
tell application "Finder"
activate
move selection to folder "Desktop Pictures" of folder
"Appearance" of folder "System Folder" of disk "Marvin"
end tell
Simon
--