Simplemente no me gusta la sintaxis de: if (Test-Path $path) { ... } y if (-not (Test-Path $path)) { ... } if (!(Test-Path $path)) { ... } especialmente hay demasiados paréntesis y no es muy legible cuando se busca "no existe" para un uso tan común. ¿Cuál es una mejor manera de hacer...