aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/scripts/packman/win-bootstrap/generate_temp_folder.ps1
blob: b24a654771cd195ebfd3e1764bb6e4a5225d0744 (plain) (blame)
1
2
3
4
5
6
7
param(
[Parameter(Mandatory=$true)][string]$parentPath=$null
)
[string] $name = [System.Guid]::NewGuid()
$out = Join-Path $parentPath $name
New-Item -ItemType Directory -Path ($out) | Out-Null
Write-Host $out