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
}
$SourceDir = "directoryName"
if (!(Test-Path -Path $SourceDir ))
{
Write-Host "Creating {$SourceDir} directory" -ForegroundColor Green
New-Item -ItemType directory -Path $SourceDir
}