PowerShell/Scripts/open-music-folder.ps1
2021-10-28 07:36:33 +02:00

25 lines
620 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the music folder
.DESCRIPTION
This script launches the File Explorer with the user's music folder.
.EXAMPLE
PS> ./open-music-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME/Music"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Music 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
}