powershell
Powershell Scripting - Building Blocks
By Ganessh Kumar1 min read
- powershell
- scripting
Check and create directory if it doesn't exist
$SourceDir = "directoryName"
if (!(Test-Path -Path $SourceDir ))
{
Write-Host "Creating {$SourceDir} directory" -ForegroundColor Green
New-Item -ItemType directory -Path $SourceDir
}