Как рекурсивно удалить все файлы .DS_STORE из каталога на компьютере с Windows?
Ответ: In PowerShell do this: cd MyFolder Get-ChildItem -recurse -filter .DS_STORE | Remove-Item -WhatIf When you specify -WhatIf, then PowerShell won't make any changes. It will instead...