一种选择是在Automator中使用“设置文件夹视图”操作:
虽然没有办法改变窗户的大小或位置。
您也可以使用这样的脚本,但是在检查应用窗口属性时,它的速度与Automator一样慢。
tell application "Finder"
folders of entire contents of (POSIX file "/Users/username/Folder/" as alias)
repeat with f in result
open contents of f
tell Finder window 1
set toolbar visible to false
set sidebar width to 0
set statusbar visible to false
set current view to column view
set bounds to {474, 250, 1318, 750}
tell its column view options
set shows icon to false
end tell
close
end tell
end repeat
end tell
“用作默认值”适用于所有普通文件夹,但之前打开过的文件夹具有可以覆盖某些默认值的.DS_Store文件。您还可以删除.DS_Store文件:
find ~/Folder -name .DS_Store -delete
osascript -e 'quit app "Finder"'
它还会删除Spotlight注释。更改某些视图选项或排序模式后,它们将保存到.DS_Store文件,该文件将再次覆盖默认值。