PowerShell/Scripts/cd-temp.ps1
2021-12-09 16:36:44 +01:00

32 lines
745 B
PowerShell

<#
.SYNOPSIS
Sets the working directory to the temporary folder
.DESCRIPTION
This script changes the working directory to the temporary folder.
.EXAMPLE
PS> ./cd-temp
📂C:\Users\markus\AppData\Local\Temp
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz · License: CC0
#>
function GetTempDir {
if ($IsLinux) { return "/tmp" }
return "$env:TEMP"
}
try {
$TargetDir = resolve-path GetTempDir
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Temporary folder at 📂$TargetDir doesn't exist (yet)"
}
set-location "$TargetDir"
"📂$TargetDir"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}