我是 Windows 作業系統愛好者,但最近我收到了 Mac 筆記型電腦作為禮物。所以現在我只想知道下面是否有任何選項編輯這讓我可以反轉我的選擇?例如,我只選擇不需要的文件,然後單擊反轉選擇使用編輯選項,我未選擇的所有文件都將被選擇。
OS X 中也有類似的選項嗎?
答案1
你要找的鑰匙是Cmd.
選擇檔案 - 任何視圖都可以 - 然後將滑鼠遊標移到檔案清單旁邊的空白區域。按住Cmd並拖曳以反轉選擇:
如果您不想使用滑鼠,另一種方法是使用 AppleScript。打開Automator.app, 建立一個新的服務。從左側窗格中,拖曳運行AppleScript到右側,然後貼上以下內容:*
on run {input, parameters}
tell application "Finder"
set inverted to {}
set fitems to items of window 1 as alias list
set selectedItems to the selection as alias list
repeat with i in fitems
if i is not in selectedItems then
set end of inverted to i
end if
end repeat
select inverted
end tell
return input
end run
設定該服務接收無輸入從Finder.app。像這樣:
將此服務另存為反轉選擇。然後,前往系統偏好設定 » 鍵盤 » 鍵盤快速鍵,並將您的捷徑新增至服務,例如ShiftCmdI:
現在,在 Finder 中選擇任何文件,然後按快捷鍵反轉選擇。
* 我在上找到了這個蘋果郵件列表,但不知道是誰寫的。
答案2
在 Windows 上還有另一種方法可以做到這一點。
它也應該適用於 Mac。
答案3
雖然不太一樣,但在 Mac 上有一種更自然的方法來執行此類操作:選擇所有文件(“編輯”選單 >“全選”或命令),而不是選擇不需要的文件然後反轉選擇- A),然後按住Command 鍵點選取消選取不需要的檔案。