Created
February 20, 2014 23:46
-
-
Save Greyeye/9125826 to your computer and use it in GitHub Desktop.
create folder if doesnt exists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$path = \\hello\world | |
if (-Not (Test-Path $path)) { | |
new-item -ItemType directory -Path $path | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment