mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 07:53:21 +01:00
59 lines
1.6 KiB
Markdown
59 lines
1.6 KiB
Markdown
Script: *cd-screenshots.ps1*
|
|
========================
|
|
|
|
cd-screenshots.ps1
|
|
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.SYNOPSIS
|
|
Sets the working directory to the user's screenshots folder
|
|
.DESCRIPTION
|
|
This PowerShell script changes the working directory to the user's screenshots folder.
|
|
.EXAMPLE
|
|
PS> ./cd-screenshots
|
|
📂C:\Users\Markus\Pictures\Screenshots
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
function GetScreenshotsFolder {
|
|
if ($IsLinux) {
|
|
$Path = "$HOME/Pictures"
|
|
if (-not(Test-Path "$Path" -pathType container)) { throw "Pictures folder at $Path doesn't exist (yet)" }
|
|
if (Test-Path "$Path/Screenshots" -pathType container) { $Path = "$Path/Screenshots" }
|
|
} else {
|
|
$Path = [Environment]::GetFolderPath('MyPictures')
|
|
if (-not(Test-Path "$Path" -pathType container)) { throw "Pictures folder at $Path doesn't exist (yet)" }
|
|
if (Test-Path "$Path\Screenshots" -pathType container) { $Path = "$Path\Screenshots" }
|
|
}
|
|
return $Path
|
|
}
|
|
|
|
try {
|
|
$Path = GetScreenshotsFolder
|
|
Set-Location "$Path"
|
|
"📂$Path"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1 as of 08/15/2024 09:50:45)*
|