Windows10: como deletar arquivos .DS_STORE via prompt powershell / command?

0

então procurei na rede várias formas de excluir arquivos do OS X (.DS_STORE e ._. DS_STORE) na minha máquina Windows.

Coisas que eu tentei (1ª e 2ª opções onde encontrei coisas na internet)

primeira opção - usando o powershell + combinação de dir / remove-item

dir D:\my-stuff\ -include "._*",".DS*" -Recurse -Force | remove-item

It finds the files but gives an error

+ FullyQualifiedErrorId : RemoveFileSystemItemUnAuthorizedAccess,Microsoft.PowerShell.Commands.RemoveItemCommand
remove-item : Cannot remove item D:\my-stuff\._.DS_Store: You do not have sufficient access rights to perform this operation.

 I then went to my drive properties and then security to give my user full control. Still the same results.

segunda opção - usando o powershell + combinação get-childitem / remove-item

Get-ChildItem -recurse -filter .DS_STORE | Remove-Item -WhatIf

which didn't result in any files being found.

Also tried

Get-ChildItem -recurse -filter .DS_STORE

and still didn't any files

terceira opção - usando o comando prompt / del command desta vez

D:\>del /f /s .DS_STORE ._*
Could Not Find D:\.DS_STORE
    
por mrjayviper 17.06.2017 / 03:02

1 resposta

0

Primeiro cd para a pasta onde há .DS_STORE file

cd D:\my-stuff

Em seguida, execute o comando abaixo para excluir o arquivo chamado .DS_Store recursively

del /s /q /f /a .DS_STORE

ou abaixo, para excluir outro arquivo oculto que corresponda ao caractere curinga ._ , que, por algum motivo, você deve ter cuidado, pois pode haver outros arquivos necessários que correspondam ao wilcard

del /s /q /f /a:h ._*
    
por 17.06.2017 / 03:26