8/12/2011

Mac OS下finder里怎么剪切文件?

Finder没有这个功能。

你可以用命令行mv, lol
你可以做一个automator动作:
Create it as a Service in Snow Leopard Automator
Service receive File or Folders  in Finder.app
Run AppleScript
(enter this script)
on run {input, parameters}
set theFolder to choose folder with prompt "Select destination folder"
without invisibles
tell application "Finder" to move input to theFolder
return input
end run
Save it as Move.workflow
然后你在Finder里面要cut就可以选Move,然后会问你move到哪里去。和Cut的效果就一
样了。
然后你还可以在keyboard里面去设置快捷键。不知道为什么设置为command+x不行。但
是可以设置为shift command x,这样你在finder里选中一个文件,shift command x,
就剪切了兵并立即问你剪切到哪里去。

没有评论:

发表评论