Update list-special-folders.ps1

This commit is contained in:
Markus Fleschutz 2022-12-28 14:47:29 +01:00
parent d1075e3cdb
commit 705f9962ad

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Lists special folders
.DESCRIPTION
This PowerShell script lists the special folders (sorted alphabetically).
This PowerShell script lists all special folders (sorted alphabetically).
.EXAMPLE
PS> ./list-special-folders
@ -19,27 +19,33 @@
function GetTempDir {
if ("$env:TEMP" -ne "") { return "$env:TEMP" }
if ("$env:TMP" -ne "") { return "$env:TMP" }
if ($IsLinux) { return "/tmp" }
if ($IsLinux) { return "/tmp/" }
return "C:\Temp"
}
function AddLine { param([string]$FolderName, [string]$FolderPath)
New-Object PSObject -property @{ 'Folder Name' = "$FolderName"; 'Folder Path' = "📂$FolderPath" }
if (Test-Path "$FolderPath" -pathType container) {
New-Object PSObject -property @{ 'Folder Name' = "$FolderName"; 'Folder Path' = "📂$FolderPath" }
}
}
function ListSpecialFolders {
if ($IsLinux) {
AddLine "Desktop" "$HOME/Desktop"
AddLine "Downloads" "$HOME/Downloads"
AddLine "Home Folder" "$HOME"
AddLine "MyDocuments" "$HOME/Documents"
AddLine "MyMusic" "$HOME/Music"
AddLine "MyPictures" "$HOME/Pictures"
AddLine "MyScreenshots" "$HOME/Pictures/Screenshots"
AddLine "MyVideos" "$HOME/Videos"
AddLine "Temporary Folder" "$(GetTempDir)"
AddLine "Desktop" "$HOME/Desktop/"
AddLine "Documents" "$HOME/Documents/"
AddLine "Downloads" "$HOME/Downloads/"
AddLine "Dropbox" "$HOME/Dropbox/"
AddLine "Home" "$HOME/"
AddLine "Music" "$HOME/Music/"
AddLine "Pictures" "$HOME/Pictures/"
AddLine "Screenshots" "$HOME/Pictures/Screenshots/"
AddLine "Snap" "$HOME/snap/"
AddLine "Trash" "$HOME/.local/share/Trash/"
AddLine "Templates" "$Home/Templates/"
AddLine "Temporary" "$(GetTempDir)"
$Path = Resolve-Path "$HOME/.."
AddLine "Users" "$Path"
AddLine "Users" "$Path/"
AddLine "Videos" "$HOME/Videos/"
} else {
$FolderNames = [System.Enum]::GetNames('System.Environment+SpecialFolder')
$FolderNames | Sort-Object | ForEach-Object {
@ -54,9 +60,9 @@ function ListSpecialFolders {
}
try {
ListSpecialFolders | Format-Table -property @{e='Folder Name';width=22},'Folder Path'
ListSpecialFolders | Format-Table -property @{e='Folder Name';width=18},'Folder Path'
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
}