Как копировать (дублировать) и перемещать файл из той же папки, что и код AppleScript? - PullRequest
0 голосов
/ 15 сентября 2011

Что-то в этом роде?

tell application "Finder"
    duplicate file "somefile.txt" of folder of (file (path to me)) to folder applications of folder startup disk
end tell

1 Ответ

1 голос
/ 15 сентября 2011

Вы очень близки, но вот правильный сценарий.

tell application "Finder" to duplicate "somefile.txt" of (container of (path to me)) to applications folder

tell application "Finder"
    set prevTIDs to Applescript's text item delimiters
    set Applescript's text item delimiters to ":"
    duplicate "somefile.txt" of (text items 1 thru -2 of (path to me as string)) as alias to applications folder
    set Applescript's text item delimiters to prevTIDs
end tell
...