Private/New-TempFolder.ps1

function New-TempFolder {
    [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Low')]
    param (
        [Parameter(Mandatory = $true)]
        [String]$path
    )
    If (!(test-path -path $path)) {
        New-Item -ItemType Directory -Force -Path $path | Out-Null
    }
}