How To Unhide Library Folder On Mac

Only within the last month has this happened. Adding music to itunes library mac torrent. Unless iTunes has updated and hasn't recorded the update in the 'Update' section of the app store - I haven't changed the program at all.Any help is appreciated.

Unhide library folder on macbook

Dec 20, 2018  It’s a folder we often access to troubleshoot problems, but it’s also kept hidden for a reason–there’s a lot of information stored there that can potentially cause a lot of damage. For that reason, Apple decided to hide your user’s Library folder. I would like to permanently unhide the /Users//Library folder so that it is always viewable in a new Finder window. Please note, I am NOT referring to the Option+Go menu method.


Permanently Unhide Library 10 comments Create New Account
Users
Click here to return to the 'Permanently Unhide Library' hint

How To Unhide Library Folder On Mac Os X

The following comments are owned by whoever posted them. This site is not responsible for what they say.

A simple thing I did was to unhide the Library folder and then drag it into my Sidebar. Even if an update hides it again, it's just one click away.

Or make an alias of the '~/Library' folder called '~/Library .'

I thought this was a big deal until I actually got Lion and found that option-clicking on the 'Go' Menu item it was there in the list. that's easy enough for me.

This should be the hint.

How To Unhide The Library Folder On A Mac

I simply can't imagine that a person needs to access that folder often enough to justify un-hiding it. You can easily access the Library when you need it by holding 'option' and choosing Library from the Finder's Go menu.

As a software developer, I definitely need immediate access to this folder, preferable in the way I have always had access to it, by simply double-clicking the folder.

Mac How To Unhide Library Folder

---
Mark
Economy-x-Talk
Have your own custom software created
http://economy-x-talk.com

Show Library Folder

This is interesting. I made my Library folder visible when I first installed Lion, and it has stayed that way through every update. I can't remember what method I used though.

Here's a launchd plist that will do the same thing, but without the need for AppleScript, login items, etc. Just drop it in /Library/LaunchDaemons and set the permissions properly.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC '-//Apple//DTD PLIST 1.0//EN' 'http://www.apple.com/DTDs/PropertyList-1.0.dtd'>
<plist version='1.0'>
<dict>
<key>Label</key>
<string>local.library.nohidden</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/chflags</string>
<string>nohidden</string>
<string>/Users/*/Library</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>EnableGlobbing</key>
<true/>
<key>StandardErrorPath</key>
<string>/dev/null</string>
</dict>
</plist>

How To Unhide Library Folder On Mac Sierra

Using the Option-Go menu is fine for the occasional use, but that doesn't work in File dialogs. VERY irritating that they reset this flag for updates or even feel the need to hide it in the first place.

All I do is run the command: $chflags nohidden ~/Library/ There is no need for //usr/bin/ (as mentioned in the previous hint) Then, browse to the folder in the Finder, drag it over into the sidebar, then do the command again. Only this time making it hidden: $chflags hidden ~/Library/ Then, it won't be visible in my ~ folder anymore, but it will still be perfectly accessible from the sidebar.