PowerShell/Scripts/list-dir.ps1

37 lines
926 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
list-dir.ps1 [<pattern>]
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Lists the directory content formatted in columns.
2021-07-13 21:10:02 +02:00
.EXAMPLE
PS> .\list-dir.ps1 C:\
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2021-01-02 12:03:01 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$Pattern = "*")
2021-01-02 12:03:01 +01:00
2021-05-10 19:41:03 +02:00
function ListDir { param([string]$Pattern)
$Items = get-childItem -path "$Pattern"
2021-01-02 12:03:01 +01:00
foreach ($Item in $Items) {
2021-04-18 17:29:25 +02:00
$Name = $Item.Name
if ($Name[0] -eq '.') { continue } # hidden file/dir
if ($Item.Mode -like "d*") { $Icon = "📂"
} elseif ($Name -like "*.iso") { $Icon = "📀"
} elseif ($Name -like "*.mp3") { $Icon = "🎵"
} elseif ($Name -like "*.epub") { $Icon = "📓"
} else { $Icon = "📄" }
new-object PSObject -Property @{ Name = "$Icon$Name" }
2021-01-02 12:03:01 +01:00
}
}
try {
2021-05-10 19:41:03 +02:00
ListDir $Pattern | format-wide -autoSize
2021-01-02 12:03:01 +01:00
exit 0
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-01-02 12:03:01 +01:00
exit 1
}