Powershell TIPS: Comprobar si existe un fichero
18 diciembre, 2018
Una facilita pero util! miramos si existe un fichero y si no existe lo creamos. If(Test-Path C:\AUDI\) { «La carpeta Existe» } Else { «La carpeta no existe» mkdir C:\AUDI\ } Test-Path hace toda la magia… este comando nos da un true o un False al mirar el path Comparte…emailLinkedinTumblrTwitterPrintFacebook
Martinezmartinez.eu