PowerShell/scripts/cd-trash.ps1

35 lines
930 B
PowerShell
Raw Normal View History

2024-10-01 13:37:53 +02:00
<#
2022-12-28 14:31:08 +01:00
.SYNOPSIS
Sets the working directory to the trash folder
2022-12-28 14:31:08 +01:00
.DESCRIPTION
This PowerShell script changes the working directory to the user's trash folder.
.EXAMPLE
PS> ./cd-trash
📂C:\$Recycle.Bin\S-1-5-21-123404-23309-294260-1001
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
function GetCurrentUserSID { [CmdletBinding()] param()
Add-Type -AssemblyName System.DirectoryServices.AccountManagement
return ([System.DirectoryServices.AccountManagement.UserPrincipal]::Current).SID.Value
}
try {
if ($IsLinux) {
$path = "$HOME/.local/share/Trash/"
2022-12-28 14:31:08 +01:00
} else {
$path = "C:\`$Recycle.Bin\$(GetCurrentUserSID)"
2022-12-28 14:31:08 +01:00
}
if (-not(Test-Path "$path" -pathType container)) { throw "Trash folder at 📂$path doesn't exist (yet)" }
Set-Location "$path"
"📂$path"
2022-12-28 14:31:08 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}