2014-01-17 66 views
0

我想用一行Applescript刪除已知目錄中的文件 - 但我無法讓它識別目錄: osascript -e'tell應用程序「發現者」刪除(文件夾的全部內容文件「/資料夾/文件夾2」,其名稱爲「MyFile.txt的」)」無法通過蘋果腳本刪除文件由於路徑

,但我得到了以下錯誤:

29:183: execution error: Finder got an error: Can’t get folder "/Folder1/folder2". (-1728) 

我也有嘗試過:

osascript -e 'tell application "Finder" to delete (files of entire contents of folder "folder2" of folder "Folder1" whose name is "MyFile.txt")' 

但有類似的結果 - 它找不到文件夾1

我希望腳本跨計算機工作,所以我不知道什麼是磁盤名稱。

有沒有人有任何建議?

在此先感謝!

回答

0

嘗試:

tell application "Finder" to delete (files of entire contents of folder (POSIX file "/Folder1/folder2") whose name is "MyFile.txt")