Add open-dropbox-folder.ps1

This commit is contained in:
Markus Fleschutz
2021-10-23 16:18:45 +02:00
parent 6ed1e06438
commit f07931b8b4
16 changed files with 70 additions and 18 deletions

View File

@ -1,8 +1,8 @@
<#
.SYNOPSIS
Opens the downloads folder
Opens the user's downloads folder
.DESCRIPTION
This script starts the File Explorer to show the downloads folder.
This script starts the File Explorer and shows the user's downloads folder.
.EXAMPLE
PS> ./open-downloads-folder
.NOTES

24
Scripts/open-dropbox-folder.ps1 Executable file
View File

@ -0,0 +1,24 @@
<#
.SYNOPSIS
Opens the user's Dropbox folder
.DESCRIPTION
This script starts the File Explorer and shows the user's Dropbox folder.
.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
}

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Opens the home folder
.DESCRIPTION
This script starts the File Explorer to show the home folder.
This script starts the File Explorer and shows the home folder.
.EXAMPLE
PS> ./open-home-folder
.NOTES

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Opens the music folder
.DESCRIPTION
This script starts the File Explorer to show the music folder.
This script starts the File Explorer and shows the music folder.
.EXAMPLE
PS> ./open-music-folder
.NOTES

View File

@ -1,8 +1,8 @@
<#
.SYNOPSIS
Starts the File Explorer with the recycle bin folder
Opens the user's recycle bin folder
.DESCRIPTION
This script starts the File Explorer with the recycle bin folder.
This script starts the File Explorer and shows the user's recycle bin folder.
.EXAMPLE
PS> ./open-recycle-bin
.NOTES

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Opens the Git repositories folder
.DESCRIPTION
This script starts the File Explorer to show the repositories folder.
This script starts the File Explorer and shows the user's Git repositories folder.
.EXAMPLE
PS> ./open-repos-folder
.NOTES

View File

@ -1,8 +1,8 @@
<#
.SYNOPSIS
Opens the File Explorer with the videos folder
Opens the user's videos folder
.DESCRIPTION
This script starts the File Explorer to show the home folder.
This script starts the File Explorer and shows the user's videos folder.
.EXAMPLE
PS> ./open-videos-folder
.NOTES