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