PowerShell/Scripts/cd-temp.ps1

32 lines
727 B
PowerShell
Raw Normal View History

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