mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 04:24:01 +01:00
26 lines
615 B
PowerShell
26 lines
615 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Sets the working directory to the fonts folder
|
|||
|
.DESCRIPTION
|
|||
|
This PowerShell script changes the working directory to the fonts folder.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./cd-fonts
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz / License: CC0
|
|||
|
#>
|
|||
|
|
|||
|
try {
|
|||
|
$Path = [Environment]::GetFolderPath('Fonts')
|
|||
|
if (-not(Test-Path "$Path" -pathType container)) {
|
|||
|
throw "Fonts folder at 📂$Path doesn't exist (yet)"
|
|||
|
}
|
|||
|
set-location "$Path"
|
|||
|
"📂$Path"
|
|||
|
exit 0 # success
|
|||
|
} catch {
|
|||
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|||
|
exit 1
|
|||
|
}
|