RE: Move .ps files to Distiller Watched Folder?
RE: Move .ps files to Distiller Watched Folder?
- Subject: RE: Move .ps files to Distiller Watched Folder?
- From: Eric Schult <email@hidden>
- Date: Tue, 02 Oct 2001 13:51:06 -0500
>
I want to have the export to .ps portion of the script
>
complete and then have all files with a .ps extension moved to an Acrobat
>
Distiller Watched folder.
Try something like this:
tell application "Finder"
set postscriptList to (every file in folder (sourceFolder)) whose name
contains ".ps"
repeat with i in postscriptList
move i to folder (targetFolder)
end repeat
end tell
- WES