How to access hidden or system files in OS X

I need to access files/folders that are not part of this dialog that comes up the "Finder" or whatever its called. Some of these files might be hidden file types. I can get to them via my terminal no problem. However in this case I need to open the file with a text editor so I can copy and paste everything out of it easily.

But unlike Windows, unlike Ubuntu there seems to be no direct access I can find on the Mac so far that will just let me browse through the file system folder by folder as I please.

What am I missing?

1

2 Answers

Accessing hidden folders from Finder

If you need to go to a system folder not visible through the "normal" Finder, do the following.

Once you have the Finder dialog open, press Cmd+G. Here, enter the path to the folder you want to open.

enter image description here

Accessing hidden files or folders from a dialog

You can show hidden files from any file open dialog by pressing Cmd+Shift+.. Thanks to @kine for mentioning.

enter image description here

If you want to always display hidden files (those starting with a dot or hidden through the extended file attributes), enter the following in a Terminal:

defaults write com.apple.finder AppleShowAllFiles TRUE

Then, reload the Finder by option-clicking its icon and selecting "Relaunch".

enter image description here

You can also toggle this option more easily with an AppleScript. See this post for instructions on how to save the AppleScript as an application that you can use to toggle the option without having to use a terminal.

Directly opening system files through the Terminal

As per Andrew's comment above, of course you can just enter the following:

open -a TextEdit /etc/hosts
open -a TextEdit ~/.somehiddenfile

Or, even shorter:

open -t /etc/hosts

Since:

-t Causes the file to be opened with the default text editor, as determined via LaunchServices

2

I think the easiest way to toggle the visibility of hidden files is by using TinkerTool. Just check 'Show hidden and system files' and click 'Relaunch Finder'. It's free and also gives you access to a bunch of other useful OS settings.enter image description here

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like