Public/Test-FolderPath.ps1
Function Test-FolderPath { Param( [Alias('FolderPath')] [Parameter(Mandatory = $true)][string]$Path ) if (!(Test-Path $Path)) { [void](New-Item -ItemType Directory -Force -Path $Path) } } |
Function Test-FolderPath { Param( [Alias('FolderPath')] [Parameter(Mandatory = $true)][string]$Path ) if (!(Test-Path $Path)) { [void](New-Item -ItemType Directory -Force -Path $Path) } } |