7 lines
135 B
PowerShell
7 lines
135 B
PowerShell
|
function verify-path { param( $path )
|
||
|
if (test-path $path) {return $true}
|
||
|
|
||
|
new-item -ItemType Directory -Path $path
|
||
|
return $false
|
||
|
}
|