Unhide Library Folder in Mac OS X 10.7 Lion
In Mac OS X Lion (10.7), Apple has made the user Library folder hidden. Preferences, presets, and other user customisation settings are stored within this Library folder.
There are two ways to access this folder:
Temporary
To keep the folder hidden and to access it sporadically:
- In Finder, choose Go > Go To Folder
- In the Go To Folder dialog, enter
~/Library - Click Go
Permanent
To unhide the folder permanently:
- Open a Terminal session
- Enter the following command (replace <username> with your actual username
- Quit Terminal
chflags nohidden /Users/<username>/Library
2 comments
Comment by shayne
on August 17, 2011 at 12:48 pm
you would be better off doing
chflags nohidden ~/Library
would make it easier just like it was stated in the first solution.
Comment by Matt Ortiz
on October 13, 2011 at 3:50 pm
Thanks Grappi!