2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-10-10 10:25:48 +02:00
|
|
|
|
Lists the folder content
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script lists the directory content formatted in columns.
|
2021-10-10 10:25:48 +02:00
|
|
|
|
.PARAMETER SearchPattern
|
|
|
|
|
Specifies the search pattern, "*" by default (means anything)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-10-10 10:25:48 +02:00
|
|
|
|
PS> ./list-folder C:\
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz / License: CC0
|
2021-01-02 12:03:01 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-10-04 21:29:23 +02:00
|
|
|
|
param([string]$SearchPattern = "*")
|
2021-01-02 12:03:01 +01:00
|
|
|
|
|
2021-10-10 10:25:48 +02:00
|
|
|
|
function ListFolder { param([string]$SearchPattern)
|
2021-10-04 21:29:23 +02:00
|
|
|
|
$Items = get-childItem -path "$SearchPattern"
|
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-10-10 10:25:48 +02:00
|
|
|
|
ListFolder $SearchPattern | format-wide -autoSize
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-01-02 12:03:01 +01:00
|
|
|
|
} 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
|
|
|
|
|
}
|