Show Hidden Finder Link 'link' [ Desktop POPULAR ]

How to Show Hidden Files and the "Library" Link in macOS Finder

If you’ve ever tried to troubleshoot an app, clear out cache files, or modify a configuration file, you’ve likely realized that macOS keeps its most important folders tucked away. By default, Apple hides system files and certain directory links (like the Library folder) to prevent accidental deletions that could crash your system.

However, for power users and developers, knowing how to show hidden Finder links and files is an essential skill. Here is the definitive guide on how to reveal what’s missing in macOS. 1. The Universal Keyboard Shortcut (Fastest Method)

The quickest way to toggle hidden files on or off in any Finder window is a simple three-key combination. Shortcut: Command + Shift + Period (.)

How it works:Open a Finder window and press these keys. Instantly, you’ll see faded icons appear. These are your hidden files (like .htaccess or .DS_Store) and folders (like /usr or /bin). Press it again to hide them. 2. How to Show the Hidden "Library" Link

The ~/Library folder is where macOS stores app support files, preferences, and caches. It is hidden by default in your Home folder. There are two main ways to access it: The "Go" Menu (Temporary Access) Open Finder. Click Go in the top menu bar. Press and hold the Option (⌥) key.

The Library link will magically appear in the list. Click it to jump straight there. Make the Library Link Permanent

If you visit this folder often, you can make it stay visible forever: show hidden finder link

Open your Home folder (the one with your name and the house icon).

Click View in the menu bar > Show View Options (or press Cmd + J).

Check the box at the bottom that says "Show Library Folder." 3. Revealing Hidden Folders in the Finder Sidebar

Sometimes the "link" you're looking for is actually a shortcut in the Sidebar that has been toggled off. Open Finder.

Go to Finder > Settings (or Preferences on older macOS versions). Click the Sidebar tab.

Check the boxes for items like your Hard Disks, Cloud Storage, or your User Folder to ensure they appear as links in every window. 4. Using Terminal (The Pro Method)

If the keyboard shortcut isn't working for some reason, you can force the Finder to show hidden files via the Terminal app. Open Terminal (found in Applications > Utilities). How to Show Hidden Files and the "Library"

Copy and paste the following command:defaults write com.apple.finder AppleShowAllFiles YES; killall Finder Hit Enter.

Note: To undo this, run the same command but change YES to NO. 5. Why are these links hidden?

Apple hides these directories to maintain a "clean" user experience and protect the "root" of the operating system. While revealing them is helpful for fixing bugs or reclaiming disk space, be careful: deleting the wrong file in a hidden folder can prevent your Mac from booting up. Summary Table Toggle Hidden Files Cmd + Shift + . View Library Link Hold Option in the "Go" menu Permanent Library Folder View Options (Cmd + J) Hard Drive Links Finder Settings > Sidebar

The command "Show Hidden Finder Link" is not a standard, built-in feature of macOS. It typically refers to one of three things:

  1. A custom Terminal command to unhide files.
  2. A specific feature in a third-party utility (like Finder "enhancers").
  3. A misunderstanding of the "Show Path Bar" feature.

Here is a guide on how to achieve the likely result you are looking for using each method.


The Proxy Icon (The Secret Drag Link)

Look at the top of any Finder window. See the tiny folder icon next to the window title?

This Proxy Icon is arguably the most useful "hidden" link of all, yet 90% of Mac users never touch it. A custom Terminal command to unhide files

Through Terminal

If you prefer using the Terminal or need more control, you can use the following method:

  1. Open Terminal on your Mac. You can find Terminal in Applications > Utilities, or use Spotlight to search for it.

  2. Type the following command to show hidden files and press Enter:

    defaults write com.apple.finder AppleShowAllFiles YES
    
  3. Restart Finder to see the changes:

    killall Finder
    

To hide the files again, you can use:

defaults write com.apple.finder AppleShowAllFiles NO
killall Finder

Case B: Link has the “hidden” flag set

chflags nohidden /path/to/hidden/link

Example:

chflags nohidden ~/Desktop/secret_folder_link

To see if a link is hidden:

ls -lO /path/to/link

Look for hidden in the flags column.