9 lines
232 B
PowerShell
9 lines
232 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Creates a new temporary directory.
|
|
#>
|
|
function New-TemporaryDirectory {
|
|
$path = Join-Path ([System.IO.Path]::GetTempPath()) ([System.IO.Path]::GetRandomFileName());
|
|
New-Item -ItemType Directory $path;
|
|
}
|