July 7, 2010
Viewing hidden files on a Mac
Macではドット"."で始まるファイルやフォルダは隠しフォルダ、ファイルになるようです。
Finderで表示する方法を紹介します。
はるか昔のメモです。。
- ターミナルを開く(アプリケーション/ユーティリティ)
- 下記コマンドを叩いてreturnキーを押して実行 ```plain defaults write com.apple.finder AppleShowAllFiles -bool true killall Finder ```
- ログアウト、あるいはkillall Finderで効果が見れます
隠しファイルを非表示にするには
上記と全く同じ手順で、コマンドを書き換えます。
defaults write com.apple.finder AppleShowAllFiles -bool false
English
Viewing hidden files on a Mac is useful for accessing the hidden UNIX directories or for recovering Music from an iPod. Additionally, by prefixing the name of a folder with a '.', you can create a folder that is seemingly hidden from prying eyes.
To view hidden folders:
- Open the Terminal (located in /Applications/Utilities/)
- At the command prompt type
defaults write com.apple.finder AppleShowAllFiles -bool true
- Press return to execute the command.
- For the changes to take effect, either log out then log back in again, or relaunch Finder (this can be done from the Force Quit Window or by typing 'killall Finder' in a Terminal window).
To hide the hidden files again:
- Open the Terminal
- At the command prompt type
defaults write com.apple.finder AppleShowAllFiles -bool false
- then press return to execute the command.
- Log out then back in again, or relaunch Finder (explained above).