Re: Copy files inside a folder
Re: Copy files inside a folder
- Subject: Re: Copy files inside a folder
- From: Cornwall <email@hidden>
- Date: Sun, 25 Nov 2001 19:18:42 -0800
At 7:17 PM -0700 11/25/01, Bryan Kobler wrote:
>
What I need it to do is look at a folder and
>
copy everything inside there to a folder on another disk. I have
>
played around with recording my actions and seeing what code is
>
written but my problem is that code seems to hard code the items I
>
am moving. I really need a way to have generic code to move files
>
of any name inside this folder.
Try this.
set daFold to choose folder --choose the folder to move from
set nuFold to choose folder --choose the folder to move to
tell application "Finder"
select every file of daFold
tell selection's every file to move to nuFold
end tell
Corny