Jump to content

Recommended Posts

Posted

O comanda simpla de PowerShell prin care verificam daca exista un fisier anume, apoi il stergem.


1. Deschideti PowerShell:

a) Start -> Programs -> Accesories -> Windows PowerShell

sau

cool.png Start -> Search Programs and Files -> Scrieti “PowerShell” -> Enter

2. Copiati comenzile de mai jos.
 


$NumeFisier = "C:\fisier_test.txt"
IF (Test-Path $NumeFisier){
Remove-Item $NumeFisier
}

Sursa: Click

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.