0
我試圖通過AppleScript在我的計算機上刪除文件。當我應用下面的代碼時,它似乎從桌面上刪除文件。我想刪除「/ Users/andrew/Documents」中的文件。這是低於該代碼從桌面刪除文件:Finder中的AppleScript設置目錄路徑
tell application "Finder"
if exists file "new.mp3" then
delete file "new.mp3"
end if
end tell
這是嘗試和它不工作:
tell application "Finder"
if exists file "/Users/andrew/Documents/new.mp3" then
delete file "/Users/andrew/Documents/new.mp3"
end if
end tell
如果任何人都可以任何建議,將不勝感激!
非常感謝Lauri解決方案 - 非常棒! – andrew 2013-04-20 20:48:17