如何一次更改所有子文件夹的视图选项?


2

我想调整文件夹及其所有子文件夹的视图选项,最终结果是它们具有相同的视图选项。

我不知道从哪里开始。我通常使用启动View选项Command—J,但我指定的设置并不总是转移到子文件夹。

一些谷歌在使用Automator的人身上取得了一些成功,但解决方案似乎已经过时了。

我正在使用Mountain Lion(10.8.2)

查看选项


我认为您通过谷歌发现的Automator解决方案,你说它看起来“过时”,是:macs.about.com/od/usingyourmac/ss / ... - 但它实际上与Lauri Ranta给出的过程相同。它可能只是“特定”这个词改为'指定'(我看,在我的小牛队中),让你失望!只是注意这一点,以防将来帮助其他人。:)

Answers:


2

一种选择是在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文件,该文件将再次覆盖默认值。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.