我們有一個samba共享,我想從哪裏複製文件夾與一個applescript。這是我已經有(安裝工程):將裝載的文件夾複製到本地文件夾
mount volume "smb://samba.com/e_18_data11$"
delay 3
set sourcefolder to ("smb://samba.com/e_18_data11$/e_18_data11$/folder1/folder2" as POSIX file)
set localfolder to ("/Users/username/Dropbox/Test" as POSIX file)
tell application "Finder" to duplicate sourcefolder to localfolder
這給了我還是這個錯誤:
the routine can not edit objects of this class." number -10010
我試圖和已經在如此地結合了許多解決方案,例如this solution
- OS X 10.9
==>拖到從Finder中的實際sourcefolder到您的AppleScript。它應該將路徑粘貼到腳本中。爲源文件夾使用該路徑。我認爲應該這樣做。 – 2013-11-20 19:01:14