PowerShell/Scripts/open-temporary-folder.ps1
2021-12-10 11:51:51 +01:00

32 lines
766 B
PowerShell

<#
.SYNOPSIS
Opens the temporary folder
.DESCRIPTION
This script launches the File Explorer showing the temporary folder.
.EXAMPLE
PS> ./open-temporary-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
function GetTempDir {
if ("$env:TEMP" -ne "") { return "$env:TEMP" }
if ("$env:TMP" -ne "") { return "$env:TMP" }
if ($IsLinux) { return "/tmp" }
return "C:\Temp"
}
try {
$Path = GetTempDir
if (-not(test-path "$Path" -pathType container)) {
throw "Temporary folder at 📂$Path doesn't exist (yet)"
}
& "$PSScriptRoot/open-file-explorer.ps1" "$Path"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}