mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 14:59:21 +02:00
Update cd-docs.ps1
This commit is contained in:
parent
6c03238aa9
commit
25fed61829
@ -1,11 +1,11 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Sets the working directory to the user's documents folder
|
Sets the working directory to the documents folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script changes the working directory to the user's documents folder.
|
This PowerShell script changes the working directory to the documents folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./cd-docs
|
PS> ./cd-docs
|
||||||
📂/home/markus/Documents
|
📂C:\Users\Joe\Documents
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -13,12 +13,16 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$TargetDir = resolve-path "$HOME/Documents"
|
if ($IsLinux) {
|
||||||
if (-not(test-path "$TargetDir" -pathType container)) {
|
$DocsFolder = Resolve-Path "$HOME/Documents"
|
||||||
throw "Documents folder at 📂$TargetDir doesn't exist (yet)"
|
} else {
|
||||||
|
$DocsFolder = [Environment]::GetFolderPath('MyDocuments')
|
||||||
}
|
}
|
||||||
set-location "$TargetDir"
|
if (-not(Test-Path "$DocsFolder" -pathType container)) {
|
||||||
"📂$TargetDir"
|
throw "Documents folder at 📂$DocsFolder doesn't exist (yet)"
|
||||||
|
}
|
||||||
|
set-location "$DocsFolder"
|
||||||
|
"📂$DocsFolder"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
||||||
|
Loading…
Reference in New Issue
Block a user