PowerShell/Scripts/open-dropbox-folder.ps1

25 lines
635 B
PowerShell
Raw Normal View History

2021-10-23 16:18:45 +02:00
<#
.SYNOPSIS
Opens the user's Dropbox folder
.DESCRIPTION
2021-10-28 07:36:33 +02:00
This script launches the File and showing the user's Dropbox folder.
2021-10-23 16:18:45 +02:00
.EXAMPLE
PS> ./open-dropbox-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME/Dropbox"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Dropbox 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
}