2021-08-20
Ajout dans Command de :
From Command
Go to text →
Batch delete file recursivly
Suppression depuis le répertoire cible et ses enfants de tout les fichiers nommé xxx
find . -name "*.JPG" -type f -delete
find . -not -name "*.RAF" -type f -delete
From Command
Go to text →
Batch delete empty dir
find . -type d -empty -delete