Folder view preferences are stored separately in a hidden file called .DS_Store in each folder. If you want to reset the folder view options to the default settings, you can use Terminal to do a search for those files and remove them.
To remove them in your home folder, you can run this:
find ~ -name ".DS_Store" -delete
Note that you can also do this on network shares. Just adjust the search path accordingly.
Suppose you have a share mapped to smb://server/data, then you would type:
find /Volumes/data -name "*.DS_Store" -delete
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |