Show Hidden Finder Link Online
If you downloaded a specific tool or script named "Show Hidden Finder Link," it likely belongs to a third-party app. The most popular apps that add "hidden" toggle buttons directly to the Finder interface are:
If you visit your Library folder every day, you don't want to toggle it each time you reboot. You can "unhide" just the Library folder permanently.
Via the Finder Menu (No Terminal Required):
Now, Library will live in your sidebar permanently, even after a reboot.
Via Terminal (The "Unhide" Command):
If you want the folder to be visible inside your home folder (not just the sidebar), open Terminal and paste this: show hidden finder link
chflags nohidden ~/Library/
Press Enter. The Library folder will now be permanently visible in your home directory.
To reverse it (hide it again):
chflags hidden ~/Library/
killall Finder
Run this once, and your Finder will transform from a basic file browser into a professional-grade file manager.
These cover the hidden file flag (hidden or invisible) used by Finder. If you downloaded a specific tool or script
Prevention is better than repeated “show hidden Finder link” searches.
✅ Always name symlinks without a leading dot – Use linkName not .linkName.
✅ Avoid creating links inside hidden folders – Finder won’t show links locates inside ~/.Trash or ~/.cache.
✅ Use Aliases (Cmd+L) instead of symlinks – Alias visibility is less affected by system protections.
✅ Add links to Finder’s Sidebar – Sidebar links stay visible even if the original symlink is hidden.
✅ Run a monthly cleanup:
find ~ -type l -flags hidden -exec chflags nohidden {} \;
(This toggles hidden flag on all symlinks in your home folder.)
Before we show you how to unearth it, you need to understand what you are looking for.
The "Hidden Finder Link" is not a single hyperlink; it is a visual breadcrumb trail. When enabled, a horizontal bar (the Path Bar) appears at the bottom of every Finder window. This bar displays the hierarchy of folders leading to your current location. If you visit your Library folder every day,
For example, if you are looking at a photo inside Macintosh HD > Users > John > Pictures > 2024 > Vacation, the hidden link will show you exactly that sequence. Each folder name in that sequence is a clickable link. Clicking "John" instantly jumps you to the User folder. Clicking "Macintosh HD" takes you to the root of your drive.
If you want to show the hidden Finder link right now without typing a single command, follow this 5-second trick.
Before learning how to show hidden Finder links, we must define the term.
In macOS Finder, a link typically refers to one of three things:
A link becomes hidden when macOS’s Finder disables its visibility. This can happen because:
Example: You create a symlink to /usr/local/bin on your desktop. By default, Finder will not show it because /usr/local/bin is a system-protected directory. That’s a hidden Finder link.