LoginSignup
2

More than 5 years have passed since last update.

posted at

Mac の Finderでドットから始めるファイルを表示する方法

MacのFinderで . から始めるファイルの表示方法をメモります。

ターミナルで、以下の二つのコマンドを入力すれば、 . から始めるファイルが表示されるようになります。

defaults write com.apple.finder AppleShowAllFiles true
killall Finder

これを元の設定 ( . から始まるファイルを非表示にする ) に戻す時は以下の二つのコマンドを実行すればOKです。

defaults write com.apple.finder AppleShowAllFiles false
killall Finder

以上です。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
2