PowerShell/scripts/cd-temp.ps1

32 lines
809 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02: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.
.EXAMPLE
PS> ./cd-temp
2022-05-04 11:50:18 +02:00
📂C:\Users\Markus\AppData\Local\Temp
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-05-04 11:50:18 +02:00
Author: Markus Fleschutz | License: CC0
#>
2021-12-09 16:36:44 +01:00
function GetTempDir {
2022-02-25 13:11:33 +01:00
if ("$env:TEMP" -ne "") { return "$env:TEMP" }
if ("$env:TMP" -ne "") { return "$env:TMP" }
if ($IsLinux) { return "/tmp" }
return "C:\Temp"
2021-12-09 16:36:44 +01:00
}
try {
2024-10-30 13:19:56 +01:00
$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 {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}