Add open-pictures-folder.ps1

This commit is contained in:
Markus Fleschutz
2021-10-23 17:04:02 +02:00
parent ba17c231db
commit 94352bf11b
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<#
.SYNOPSIS
Opens the user's pictures folder
.DESCRIPTION
This script starts the File Explorer and shows the user's pictures folder.
.EXAMPLE
PS> ./open-pictures-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME/Pictures"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Pictures 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
}