PowerShell/Scripts/list-dir.ps1

38 lines
910 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
Lists the directory content formatted in columns
.EXAMPLE
PS> .\list-dir.ps1 C:\
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
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-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-01-02 12:03:01 +01:00
exit 1
}