Answers:
重新启动Finder
option+ right click[或Ctrl+ Opt+ left click] Dock中的Finder图标,最后一项是Relaunch。
或尝试在StackOverflow Automator命令上找到的刷新所有Finder /所有Finder Windows的命令 -适用于Finder窗口,无法测试共享项。
tell application "Finder"
set theWindows to every window
repeat with i from 1 to number of items in theWindows
set this_item to item i of theWindows
set theView to current view of this_item
if theView is list view then
set current view of this_item to icon view
else
set current view of this_item to list view
end if
set current view of this_item to theView
end repeat
end tell