0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mac であるフォルダー内の .DS_storeを一気に削除する方法

Posted at

ちょっと、Mac上のディレクトリを圧縮するときに .DS_store のファイルを全部削除したかったので、やり方を備忘録として書きます。

ターミナルで指定のフォルダに移動します。そして、以下のコードを実行するだけ。

bash
find . -name ".DS_Store" -type f -delete

内容解説

  • -name ".DS_Store"
    で .DS_Store ファイルのみを検索します。
  • -type f
    通常ファイルのみに絞り込みます。
  • -delete
    見つかったファイルを削除します。
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?