美文网首页Alfred
使用Alfred来隐藏文件

使用Alfred来隐藏文件

作者: 鸭梨山大哎 | 来源:发表于2017-02-11 23:24 被阅读33次

    下载workflow
    https://github.com/SIDmao/Hide.alfredworkflow/blob/master/Toggle%20input%20method.alfredworkflow

    tell application "Finder" to set s to selection as alias list
    if s is {} then return
    set out to ""
    repeat with f in s
        set thePath to quoted form of POSIX path of f
        set out to do shell script "ls -ldO " & thePath & "| awk '{ print $5 }'"
        if out is equal to "hidden" then
            do shell script "chflags nohidden " & thePath
            display notification "Files or folders have been UNHIDDEN." with title "♞"
        else if out is equal to "-" then
            do shell script "chflags hidden " & thePath
            display notification "Files or folders have been HIDDEN. To view it, please press ⇧⌘. in Finder." with title "♘"
        end if
    end repeat
    

    使用方法就是先选定文件,然后打开Alfred输入hide回车就可以了!

    相关文章

      网友评论

        本文标题:使用Alfred来隐藏文件

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