MacOS Folders – Moving ‘Pictures’, ‘Documents’, ‘Movies’ etc Folders

defaultsfoldersmacos

I would like to move folders like 'Pictures', 'Documents', 'Movies' to a different from the default under the root of user's home location, preferably into a sub-folder under the same user's home folder. For example, user/Music would go to user/stuff/Music.

I'd rather not create symbolic links to moved folders, but change system's behaviour altogether, so it knows where to find those folders.

Please bear in mind that I do not want to move user's home folder, but just those ones, for example, move them to /Users/[user name]/stuff/ since I don't like them polluting the home folder there.

Best Answer

Art,

Do you have this working successfully?

Have you tried hiding the folders using something like:

chflags hidden ~/Documents 

Then creating a link to it such as (in Terminal):

cd ~
mkdir stuff
cd stuff
ln -s ~/Documents

I believe that this will hide the ~/Documents folder from the Finder but it will still be there so anything writing to it will work OK. In addition you will see the link in ~/stuff...