Re: Copying folders, and files
Re: Copying folders, and files
- Subject: Re: Copying folders, and files
- From: Martin Michel <email@hidden>
- Date: Mon, 11 Feb 2002 23:34:15 +0100
Because your script takes quite a time for copying you must add an "with
timeout"-handler, like this:
My script looks something like:
tell the application "Finder"
with timeout of 6000 seconds
activate
select disk "disk 1"
copy selection to folder "backup" of disk "backup disk"
end timeout
end tell
This will protect your script from being timed out.
Greetings,
Martin
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.