0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

macでFinder上では隠しフォルダになってるのに、lsでファイルを見ると隠しフォルダとはなっていない場合

Last updated at Posted at 2023-08-05

ある日、macのデスクトップのファイルにアクセスしようとしたら全部ファイルが消えていて焦った。幸い、"command+shift+."で隠しフォルダを表示させてみると全部ファイルは見つかったので助かった。
但し、

ls 

でファイルを見てみると、全て表示されており、

ls -a #隠しフォルダも表示する。macでは隠しフォルダは.から始まる名前になっている

でなくても表示された。

このままでも問題ないと言えば問題ないが、見栄えが悪いので戻すやり方についてメモっておく。

chflags nohidden 'file path '         #fileの可視化

これをすれば治った。但し、隠しておきたいファイルがある場合は以下のコマンドで戻せば良い

chflags hidden 'file path'       #fileの非可視化

追記:
ただのバグだったようです、、、別の日に開いたら治ってました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?