Re: copy files
Re: copy files
- Subject: Re: copy files
- From: KOENIG Yvan <email@hidden>
- Date: Wed, 4 Jun 2008 18:20:54 +0200
You may try to use:
on open theFiles
set p2d to path to desktop
set newName to "storagefolder"
set storageFolder to (p2d as text) & newName & ":"
tell application "System Events" to if not (exists folder
storageFolder) then make new folder at end of p2d with properties
{name:newName}
tell application "Finder"
repeat with thefile in theFiles
duplicate thefile to storagefolder replacing ask
end repeat
end tell
end open
Yvan KOENIG (from FRANCE mercredi 4 juin 2008 18:17:55)
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden