0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

.DS_Store ファイルの一括削除の仕方(Mac版)

Posted at

今回行ったこと

Macを使って、
指定したディレクトリに含まれている「.DS_Store」というファイルを一括で削除する方法について説明します。
(指定したディレクトリの下層に含まれる「.DS_Store」についても削除します。)

環境

  • 作業を行う環境(ファイル削除を行う環境)
    iMac 5K(2019)

作業

Macの標準ターミナルを使用して削除します。

  1. ターミナルを開く

  2. 以下のコマンドを入力し、ファイルが存在しているファイルのディレクトリに移動する
    cd <ディレクトリ名>
    (<ディレクトリ名>の部分は、各自修正してください。<>は削除してください。)

  3. 以下のコマンドを入力し、「.DS_Store」を削除する
    find . -name ".DS_Store" -delete

  4. 以下のコマンドを入力し、「.DS_Store」が存在しないか確認する
    find . -name ".DS_Store"

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?