I’m trying to do two things which have got to be extremely easy. But for whatever reason they’re not working for this newbie.
Check an external drive for a specific folder. If it exists, don’t do anything. If it doesn’t exist, create that folder. Fine. Then, move a file from the desktop to that specific folder. I found a script that would make one on the desktop, but I can’t for the life of me figure out how to make this folder to another drive. Here’s the desktop version:
tell application "Finder"
activate
select window of desktop
if not (folder ("Backup Folder") exists) then
make new folder at desktop with properties {name:"Backup Folder"}
end if
end tell
Now, when I simply try to make a new folder on the other drive, I’ve been trying variants of this:
set Backup to "Backup Folder"
set myFolder to "Volumes:Renders:"
tell application "Finder"
make new folder at folder myFolder with properties {name:Backup}
end tell
And again, after the folder is made I want to move (or copy and delete) a file from the desktop to that new folder.
Like I said, I’ll gladly take the beatings for not being able to figure this out.
Mike