PowerShell/Scripts/open-videos-folders.ps1

25 lines
605 B
PowerShell
Raw Normal View History

2021-10-23 16:12:37 +02:00
<#
.SYNOPSIS
2021-10-23 16:18:45 +02:00
Opens the user's videos folder
2021-10-23 16:12:37 +02:00
.DESCRIPTION
2021-10-28 07:36:33 +02:00
This script launches the File Explorer with the user's videos folder.
2021-10-23 16:12:37 +02:00
.EXAMPLE
PS> ./open-videos-folder
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-10-23 16:12:37 +02:00
#>
try {
2022-09-06 21:42:04 +02:00
$TargetDir = Resolve-Path "$HOME/Videos"
if (-not(Test-Path "$TargetDir" -pathType container)) {
2021-10-23 16:12:37 +02:00
throw "Videos folder at 📂$TargetDir doesn't exist (yet)"
}
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-10-23 16:12:37 +02:00
exit 1
}