open-music-folder
Opens the music folder
#requires -version 5.1
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
} catch {
throw
}This script has no configurable parameters.