How to set a folder view as default for all folders in Finder?

I'd like to get the same folder view for every folder, that means, to have my stuff being sorted always by type and then by name. is that possible with automator?

Till yet, I set my view via cmd+j (List view, sort it by type and name) and set it as "default". It just sets the view as default for this particular folder. But I'd like to set it for all the subfolders too. When I change the folder, the documents are sorted different and not as I set it as default for the previous folder before...

So I tried to make a workflow with Automator, but it doesn't work. Or I just can't handle this program.

  1. First I clicked on "workflow" (is that right or should I have chosen another icon?)
  2. define the automation: "Get Folder Contents" --> "Sort Finder Items" (Type) --> "Sort Finder Items" (name) --> "Repeat for each subfolder found",

That's how it looks: (sry for the german, but the description is in (2)) enter image description here

--> Or is it possible to do it apart from automator?


As bmike mentioned, the default settings are not used for folders that have folder-specific settings saved in a .DS_Store file. You can just delete .DS_Store files though:

sudo find / -name .DS_Store -delete; killall Finder

Perhaps the trick is to identify where the system gets its default settings for creating a .DS_Store file and modify those settings. This would, in theory, make the Finder perform the way you would like as it's default.

Other methods seem to have significant pitfalls and unfortunately force the view to icon using the browser window in the finder. I personally want to conserve screen real-estate and use more than one window in the finder... thus taking that whole browser window and reducing it to icon view without the superfluous adornments is my ideal state. Then being able to flip to list, with a command key and back, perfect.

As it is, it is a long standing FTFF issue in Mac OS X. Apple is trying to make the Mac more like an iPad which is no smarter than Microsoft trying to make a tablet more like a desktop.

So... where does the Finder get the settings to create the .DS-Store file. If it is a structured approach, the settings are hidden in some plist buried deep in a package or elsewhere. If it is unstructured, it is stored in the binary code of the Finder... (hoping for former)