У меня есть скрипт, который кто-то написал. Он работает на его компьютере, но не на моем.
Первоначально он сказал "as alias"
, но я продолжал получать сообщение об ошибке следующим образом:
"Can’t make file "Macintosh HD:Users:williamsato:Desktop:Photobooth:CurrentSession" into type alias."
Поэтому я изменил alias
на string
, следуя предложению, сделанному в другом посте.
Теперь я не получаю это сообщение об ошибке, но получаю новое, как показано ниже:
"Can’t get every file of "Macintosh HD:Users:williamsato:Desktop:PhotoBooth:CurrentSession"."
И он выделяет строку "переместить файлы SourceFolder в DestinationFolder с заменой"
Не уверен, чтоидет не так.
спасибо
on run {input, parameters}
set SourceFolder to POSIX file "/Users:/williamsato/Desktop/Photobooth/CurrentSession" as string
set DestinationFolder to POSIX file "/Users/williamsato/Desktop/Photobooth/PreviousSessions" as string
tell application "Finder"
move files of SourceFolder to DestinationFolder with replacing
end tell
(* Clear Large Type *)
tell application "System Events" to keystroke "a" using command down
end run