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?

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

Last updated at Posted at 2024-11-30

今回行ったこと

Windowsを使って、「.DS_Store」というファイルを一括で削除する方法について説明します。

環境

  • 作業を行う環境(ファイル削除を行う環境)
    Windows 10 Pro

  • 元ファイルを作成した環境
    MacBook Pro (13-inch, 2020, Four Thunderbolt 3 ports)

作業

Windowsの標準コマンドプロンプトを使用して削除します。

  1. コマンドプロンプトを管理者権限で開く
    管理者権限でコマンドプロンプトを開きます。以下の画像を参考にしてください。
    スクリーンショット 2024-11-30 15.48.01.png

  2. 以下のコマンドを入力し、実行します
    del /s /q /f "C:\Users\<ユーザー名>\Desktop\.DS_Store"
    (<ユーザー名>の部分は、修正してください。<>は削除してください。)

ユーザー名が分からないとき

  1. コマンドプロンプトで以下のコマンドを実行することで、確認できます。
    echo %username%

注意事項

  • 誤って他のファイルを削除しないように、コマンドに誤りがないか確認してください!
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?