Featured image of post PowerShellで.DS_Storeを一括削除する

PowerShellで.DS_Storeを一括削除する

カレントディレクトリを対象のフォルダーに移動し、以下のコマンドを実行するとサブフォルダを含めて.DS_Storeを一括削除できます。

1
Get-ChildItem . -include '.DS_Store' -Recurse -Force | Remove-Item -Force
comments powered by Disqus
Hugo で構築されています。
テーマ StackJimmy によって設計されています。