LoginSignup
0
0

More than 5 years have passed since last update.

メモ!Finderで隠しファイル・フォルダを表示 - Mac

Posted at

隠しファイル・フォルダを表示

  • ターミナルを起動するとプロンプト($)が表示されるので、隠しファイル・フォルダを表示するように以下のdefaultsコマンドを実行します。
$ defaults write com.apple.finder AppleShowAllFiles TRUE

-設定を反映するために「Finder」プロセスを終了します。

$ killall Finder

隠しファイル・フォルダを非表示

  • 隠しファイル・フォルダを非表示(デフォルトの設定)に戻す場合は、ターミナルに以下のコマンドを実行します。
$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder
0
0
0

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
  3. You can use dark theme
What you can do with signing up
0
0