Re: Copy files inside a folder
Re: Copy files inside a folder
- Subject: Re: Copy files inside a folder
- From: Jolly Roger <email@hidden>
- Date: Mon, 26 Nov 2001 10:21:48 -0600
On 11/25/2001 9:18 PM, "Cornwall" <email@hidden> wrote:
>
tell application "Finder"
>
select every file of daFold
>
tell selection's every file to move to nuFold
>
end tell
Just a note:
It's usually good to avoid selecting things in the Finder via AppleScript.
If your script makes a selection and the user happens to click the mouse
while the script is running, the selection may change, and the wrong files
may be moved.
JR