23 Eylül 2020 Çarşamba

Powershell Remove-Item - Dosya ve Dizin Siler

Giriş
Açıklaması şöyle
Remove-Item *.tmp or any of its aliases like rm *.tmp, del *.tmp
Örnek
Şöyle yaparız
CMD Example: del TestItem.txt

Powershell Example: remove-item TestItem.txt
Örnek
Şöyle yaparız
$mydirectory ="..."
$excludedirectory1 ="..."
$excludedirectory2 ="..."
Remove-Item $mydirectory\* -Exclude $excludedirectory1 $excludedirectory2 -Recurse -Force -ErrorAction Ignore

Hiç yorum yok:

Yorum Gönder