janikvonrotz
12/6/2013 - 7:39 AM

PowerShell: Create Folder if not exists #PowerShell

PowerShell: Create Folder if not exists #PowerShell

if(!(Test-Path -path $LogPath)){New-Item $LogPath -Type Directory}