清空下载文件夹

作者: 鸭梨山大哎 | 来源:发表于2017-02-11 15:47 被阅读16次

利用applescript清空下载文件夹

  tell application "Finder"
    set dls to folder "Downloads" of (path to home folder)
    delete (every file of dls)
    delete (every folder of dls)
end tell

同理可用于清空其他文件夹。把代码里的Downloads改成Desktop就可以

清空垃圾箱

tell application "Finder"
    empty trash
end tell

相关文章

网友评论

    本文标题:清空下载文件夹

    本文链接:https://www.haomeiwen.com/subject/vrloittx.html