1
fanzeyi 2014-10-13 06:00:56 +08:00
看看 Finder 的 Preferences -> Sidebar 里能不能把你用的那些给隐藏掉。
|
3
windirt 2014-10-13 08:45:13 +08:00
一般来说,你的东西不会是拖进扩充磁盘的根目录吧,假如有特定目录的话,可以把这些目录拖到边栏
|
4
ffffwh 2014-10-13 11:12:38 +08:00
做个软/硬连接、alias啥的到那个盘,边栏的就不用了。
|
5
devon 2014-10-13 11:16:03 +08:00 2
如果你用Alfred,可以用下面的脚本:
``` tell application "Finder" set diskList to the disks repeat with dl in diskList set theName to the name of dl if theName is not "Data" and theName is not "Time Machine Backups" then eject disk theName end if end repeat end tell ``` 这里面,排除了名为 Data,及 Time Machine Backups 的两个盘。 每次我要弹出磁盘时,都是呼出 Alfred,输入 ej,加车,很方便,也不会误点。 |