2015-04-27 51 views
1

,當我試圖運行這個的AppleScript:AppleScript的錯誤「無效鍵形式」運行

tell application "Finder" 
    duplicate POSIX file contents "/Users/xx/Desktop/xxxx/" to POSIX file "/USB/" with replacing 
    delete POSIX file contents "/Users/felix/Desktop/xxxx/" 
    empty trash 
end tell 

但每次出現錯誤消息時說:

Invalid key form.

回答

0

你並不需要使用contents 。這應該工作。

tell application "Finder" 
    set src to POSIX file "/Users/xx/Desktop/test.tmp" 
    set dst to POSIX file "/USB/" 
    duplicate src to dst with replacing 
end tell 
+0

現在,當我運行它時,applescript編輯器拋出了這條消息:Finder出現錯誤:AppleEvent處理程序失敗。 –

+0

哪一行導致錯誤? – tsnorri

+0

這一個:重複src到dst替換 –