我正在尝试通过 AppleScript 删除计算机上的文件。当我应用下面的代码时,它似乎从桌面上删除了文件。我想删除“/Users/andrew/Documents”中的文件。下面是从桌面删除文件的代码:
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
如果有人可以提供任何建议,将不胜感激!