PowerShell/Scripts/open-dropbox-folder.ps1

25 lines
584 B
PowerShell
Raw Normal View History

2021-10-23 16:18:45 +02:00
<#
.SYNOPSIS
2021-11-30 14:57:46 +01:00
Opens the Dropbox folder
2021-10-23 16:18:45 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the File Explorer with the user's Dropbox folder.
2021-10-23 16:18:45 +02:00
.EXAMPLE
PS> ./open-dropbox-folder
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-10-23 16:18:45 +02:00
#>
try {
2021-11-30 14:57:46 +01:00
$TargetDirs = resolve-path "$HOME/Dropbox*"
foreach($TargetDir in $TargetDirs) {
& "$PSScriptRoot/open-file-explorer.ps1" "$TargetDir"
exit 0 # success
2021-10-23 16:18:45 +02:00
}
2021-11-30 14:57:46 +01:00
throw "No Dropbox folder at 📂$HOME/Dropbox"
2021-10-23 16:18:45 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-10-23 16:18:45 +02:00
exit 1
}