How to Hide Photos on Mac in 2026
Five ways to hide photos on Mac, from the Photos Hidden Album to AES-256 encrypted disk images.
You can hide photos on Mac using the built-in Hidden Album in the Photos app, encrypted disk images, Finder's invisible file flag, or FileVault full-disk encryption. For photos that need to survive forensic examination, AES-256 encrypted vault apps like Vaultaire provide zero-knowledge encryption where files are cryptographically inaccessible without the correct key. This guide covers all five methods with step-by-step instructions and security analysis.
Image prompt: Flat illustration of a MacBook laptop with a translucent shield hovering over the screen. The screen shows a simplified photo grid with some photos fading to invisible. Deep blue and teal palette. Style: flat vector illustration, startup-style, clean design, white background. 16:9, 4K, no text, no watermark.
What "Hidden" Means on Mac (and What It Does Not)
The word "hidden" has three different meanings in the Mac context, and conflating them causes real security problems.
UI-hidden means the item is moved out of the default view but remains accessible with one click or one menu toggle. The macOS Photos app Hidden Album works this way.
File-system hidden means the item's invisible flag is set, so it does not appear in Finder by default. Press Cmd+Shift+Period and it reappears instantly. No password required.
Encrypted means the item is mathematically transformed. Without the decryption key, the file is noise. This is the only method that protects against someone with physical access to your Mac.
| Method | Protection Level | Survives Physical Access? | Requires Password to Reveal? |
|---|---|---|---|
| Photos app Hidden Album | UI-hidden | No | No (just click View > Show Hidden Album) |
| Finder invisible flag | File-system hidden | No | No (Cmd+Shift+Period) |
| Encrypted disk image (.dmg) | Encrypted (AES-128 or AES-256) | Yes | Yes |
| FileVault | Full-disk encryption | Yes (when powered off) | Yes (login password) |
| Encrypted vault app | Per-file encryption | Yes | Yes (pattern/password) |
Method 1: Photos App Hidden Album
The simplest method. It moves photos out of your main library view.
Step 1: Open the Photos App
Launch Photos from your Dock or Applications folder.
Step 2: Select the Photos to Hide
Click on a photo, or hold Command and click multiple photos to select them.
Step 3: Hide the Selection
Right-click (or Control-click) the selected photos and choose "Hide [N] Photos." Confirm when prompted.
Step 4: Access Hidden Photos Later
In the sidebar, scroll down to the "Hidden" album under Utilities. If you do not see it, go to View > Show Hidden Photo Album.
Security reality check: This is cosmetic organization, not security. Anyone who opens the Photos app on your Mac can view the Hidden Album with one click. There is no password gate. The photos are stored unencrypted in your Photos Library package. To verify this yourself, right-click the Photos Library file in your Pictures folder, select "Show Package Contents," and browse the originals directory. Every "hidden" photo is right there, readable.
Method 2: Finder Invisible Files
macOS lets you mark any file as invisible in Finder using the terminal.
Step 1: Open Terminal
Find Terminal in Applications > Utilities, or search for it with Spotlight (Cmd+Space).
Step 2: Set the Hidden Flag
Type the following command, then drag your photo file into the Terminal window to auto-fill the path:
chflags hidden /path/to/your/photo.jpg
Step 3: Verify the File Is Hidden
Open the folder in Finder. The file should be gone from view.
Step 4: Reveal Hidden Files When Needed
Press Cmd+Shift+Period in any Finder window to toggle invisible files. The photo reappears, grayed out. Press the shortcut again to hide it.
To permanently unhide: chflags nohidden /path/to/your/photo.jpg
Security reality check: This is even weaker than the Photos Hidden Album. Anyone who knows the keyboard shortcut (or uses Terminal) sees everything. The file is not encrypted, not password-protected, and trivially discoverable.
Method 3: Encrypted Disk Image
This is the strongest built-in method. macOS can create encrypted .dmg files that require a password to mount.
Step 1: Open Disk Utility
Find Disk Utility in Applications > Utilities.
Step 2: Create a New Image
Go to File > New Image > Blank Image. Set these parameters:
- Name: Whatever you want (e.g., "Project Files")
- Size: Large enough for your photos (pick a size or choose "custom")
- Format: APFS or Mac OS Extended
- Encryption: 256-bit AES encryption (the stronger option)
- Partitions: Single partition
- Image Format: Read/write disk image
Step 3: Set a Strong Password
Enter a password when prompted. Uncheck "Remember password in my keychain" if you want maximum security. If you leave it checked, anyone logged into your Mac can mount the disk image without the password.
Step 4: Move Photos Into the Encrypted Image
Double-click the .dmg to mount it (you will need the password). Drag photos into the mounted volume. When finished, eject the volume. The .dmg file on disk is now encrypted.
Security reality check: This is genuine AES-256 encryption. Without the password, the disk image contents are unreadable. The weakness: if you store the password in Keychain and someone has access to your logged-in Mac, they can mount it. Also, the .dmg file itself is visible in Finder -- its existence is not hidden, only its contents are encrypted.
Method 4: FileVault Full-Disk Encryption
FileVault encrypts your entire startup disk. It does not hide individual photos, but it protects everything when the Mac is powered off or logged out.
Step 1: Open System Settings
Go to Apple menu > System Settings > Privacy & Security.
Step 2: Enable FileVault
Scroll to the FileVault section. Click "Turn On." Choose whether to allow your iCloud account to unlock the disk, or save a recovery key. Write down the recovery key and store it somewhere safe.
Step 3: Wait for Encryption
Initial encryption takes a few hours depending on disk size. The Mac remains usable during this process.
Security reality check: FileVault protects against someone stealing your Mac while it is powered off. It does not protect against someone who has access to your Mac while it is logged in. If your partner, roommate, or coworker can sit down at your logged-in Mac, FileVault does nothing for your photos. It is background protection, not photo hiding.
Method 5: Encrypted Vault App
For photos that need to be individually encrypted and hidden from anyone with access to your logged-in Mac, a dedicated vault app provides the strongest protection.
Vaultaire uses AES-256-GCM encryption where each file is encrypted with a unique initialization vector. The encryption key is derived from a pattern drawn on a 5x5 grid using PBKDF2 with HMAC-SHA512. The app uses zero-knowledge architecture -- the developers cannot access your files. Every pattern opens a different vault, and there is no metadata revealing how many vaults exist.
On Mac, the iCloud-synced encrypted backup from an iPhone Vaultaire vault provides access to encrypted photos. The data remains encrypted at rest regardless of whether the Mac is logged in or off.
Other encrypted vault options for Mac include Cryptomator (open-source, encrypts files before they sync to cloud storage) and VeraCrypt (creates encrypted volumes, successor to TrueCrypt).
Which Method Should You Use?
It depends on your threat model.
| Threat | Best Method | Why |
|---|---|---|
| Casual snoopers (someone glancing at your screen) | Photos Hidden Album | Quick, easy, enough to keep photos out of the main view |
| Someone browsing your Mac while logged in | Encrypted disk image or vault app | Requires a password to access |
| Device theft (Mac stolen while powered off) | FileVault + encrypted disk image | FileVault encrypts the disk; the .dmg adds a second layer |
| Forensic examination or legal compulsion | Encrypted vault app with zero-knowledge architecture | No backdoor, no master key, plausible deniability |
| Someone with your Mac login password | Encrypted vault app with separate password | FileVault and Keychain-stored .dmg passwords are bypassed with the login password |
Tips and Common Mistakes
- Do not rely on the Photos Hidden Album for security. It is an organizational feature, not a privacy feature. Treat it as a "not in my main view" tool.
- Uncheck "Remember password in my keychain" when creating encrypted disk images. Keychain integration is convenient but defeats the purpose if someone has your login.
- Enable FileVault regardless. It is free, transparent, and protects against device theft. There is no reason to leave it off on a modern Mac.
- Remember that Spotlight indexes file names. Even if a photo is hidden in Finder, Spotlight may surface it in search results. Encrypted disk images and vault apps avoid this because the file names are encrypted.
- Time Machine backs up unencrypted. If you use Time Machine without encrypting the backup disk, your photos exist unencrypted on the backup drive. Enable Time Machine encryption in System Settings.
Frequently Asked Questions
Can someone find hidden photos on my Mac?
It depends on the hiding method. Photos in the Hidden Album are one click away. Finder invisible files are one keyboard shortcut away (Cmd+Shift+Period). Only encrypted methods (disk images, FileVault, vault apps) require a password or key to access.
Does FileVault hide individual photos?
No. FileVault encrypts the entire disk and protects against offline attacks (stolen Mac, removed hard drive). When the Mac is logged in and running, FileVault is transparent -- all files are accessible normally. It does not hide or individually protect specific photos.
Are hidden photos backed up to iCloud?
Photos in the Hidden Album sync to iCloud Photos if iCloud Photos is enabled. They remain "hidden" in iCloud, but Apple holds the encryption keys for standard iCloud Photos. Apple can access them with a court order unless you enable Advanced Data Protection, which adds end-to-end encryption.
What is the most secure way to store private photos on Mac?
An encrypted disk image with AES-256 encryption (password not saved to Keychain) or an encrypted vault app with zero-knowledge architecture. Both ensure the photos are cryptographically inaccessible without the correct password, even if someone has physical access to your Mac.
Can I hide photos from Spotlight search?
Spotlight does not index the contents of encrypted disk images or vault apps. For files hidden with Finder's invisible flag, Spotlight may still index them. You can exclude specific folders from Spotlight in System Settings > Siri & Spotlight > Spotlight Privacy.
Bottom Line
The Photos app Hidden Album is organization, not security. Finder's invisible flag is even weaker. For actual protection, use an encrypted disk image (AES-256, password not in Keychain) or an encrypted vault app. If you store private photos on your Mac, enable FileVault as a baseline and add per-file encryption on top. The five minutes it takes to set up an encrypted disk image or install Vaultaire is worth more than discovering your "hidden" photos were accessible with a single keyboard shortcut.
Last updated: March 2026