PowerShell/Scripts/open-temporary-folder.ps1
2021-12-09 16:36:44 +01:00

30 lines
707 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 ($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)"
}
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}