美文网首页
AppleScript-文件及路径

AppleScript-文件及路径

作者: 不写昵称 | 来源:发表于2018-07-29 18:00 被阅读0次

    路径格式
    硬盘:子路径:子路径
    如:"Macintosh HD:Users:henry:Desktop:未命名文件夹 2"
    注意:文件夹与文件夹间用:相连,而不是/

    选择文件
    使用choose file,这样就不用手动填充路径

    set filePath to choose file
    get filePath
    

    打开文件夹

    tell application "Finder"
        open folder "Macintosh HD:Users:henry:Desktop:未命名文件夹 2"
    end tell
    

    打开文件

    tell application "Finder"
        open file "Macintosh HD:Users:henry:Desktop:未命名文件夹 2:index.html"
    end tell
    

    使用文件替身打开文件好处
    好处:当文件被移动或改名时,依然能够打开文件。因为替身记录的是文件id
    如果路径前面的是file或folder,则表示返回的路径是文件或文件夹本身的存储位置。

    tell application "Finder"
        set pathStr to alias "Macintosh HD:Users:henry:Desktop:未命名文件夹1112"
        open folder pathStr
    end tell
    

    移动文件
    move to
    举例:
    将制定文件移到垃圾桶

    set filePath to choose file
    tell application "Finder"
        move filePath to the trash
    end tell
    

    相关文章

      网友评论

          本文标题:AppleScript-文件及路径

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