Functions/Utilities/Add-CdsFolder.ps1
<#
.SYNOPSIS Add folder in given path if it doesn't exists. #> function Add-CdsFolder { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [ValidateScript( { Test-Path $_ })] [String] $Path, [Parameter(Mandatory = $true)] [String] $FolderName, [Switch] $CleanIfExists ) begin { $StopWatch = [System.Diagnostics.Stopwatch]::StartNew(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Start -Parameters ($MyInvocation.MyCommand.Parameters); } process { $folderPath = [System.IO.Path]::Combine($Path, $FolderName); if ($CleanIfExists) { if (Test-Path $folderPath) { Remove-Item -Recurse -Force $folderPath; } } New-Item -ItemType Directory -Force -Path $folderPath | Out-Null; $folderPath; } end { $StopWatch.Stop(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Stop -StopWatch $StopWatch; } } Export-ModuleMember -Function Add-CdsFolder -Alias *; |