iOS

iOS notes: show or hide Finder hidden files with defaults write and killall Finder, including the OS X 10.8 form.

Image: Simple Icons contributors / Simple IconsCC0 1.0

iOS notes: show or hide Finder hidden files with defaults write and killall Finder, including the OS X 10.8 form.

iOS notes: show or hide Finder hidden files with defaults write and killall Finder, including the OS X 10.8 form.

Show or hide hidden files in Finder, then restart Finder.

Show hidden files

defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

Hide hidden files

defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder

OS X 10.8 and prior

Show:

defaults write com.apple.finder AppleShowAllFiles TRUE ; killall Finder

Hide:

defaults write com.apple.finder AppleShowAllFiles FALSE ; killall Finder
Updated: 2026 Aug 19