PowerShell/Scripts/open-repos-folder.ps1

25 lines
645 B
PowerShell
Raw Normal View History

2021-10-23 15:57:31 +02:00
<#
.SYNOPSIS
Opens the Git repositories folder
.DESCRIPTION
2021-10-23 16:18:45 +02:00
This script starts the File Explorer and shows the user's Git repositories folder.
2021-10-23 15:57:31 +02:00
.EXAMPLE
PS> ./open-repos-folder
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TargetDir = resolve-path "$HOME/Repos"
if (-not(test-path "$TargetDir" -pathType container)) {
throw "Repos 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
}