2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Lists the full directory tree
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script lists the full directory tree.
|
2021-10-16 13:40:20 +02:00
|
|
|
|
.PARAMETER DirTree
|
|
|
|
|
Specifies the path to the directory tree
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./list-dir-tree 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-29 11:07:01 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$DirTree = "$PWD")
|
2021-01-29 11:07:01 +01:00
|
|
|
|
|
2021-04-16 17:22:26 +02:00
|
|
|
|
function ListDir { param([string]$Directory, [int]$Depth)
|
2021-01-29 11:07:01 +01:00
|
|
|
|
$Depth++
|
|
|
|
|
$Items = get-childItem -path $Directory
|
|
|
|
|
foreach ($Item in $Items) {
|
|
|
|
|
$Filename = $Item.Name
|
2021-02-06 15:14:47 +01:00
|
|
|
|
if ($Item.Mode -like "d*") {
|
2021-01-29 11:07:01 +01:00
|
|
|
|
for ($i = 0; $i -lt $Depth; $i++) {
|
|
|
|
|
write-host -nonewline "+--"
|
|
|
|
|
}
|
2021-04-16 17:18:50 +02:00
|
|
|
|
write-host -foregroundColor green "📂$Filename"
|
2021-04-16 17:23:18 +02:00
|
|
|
|
ListDir "$Directory\$Filename" $Depth
|
2021-04-16 17:27:13 +02:00
|
|
|
|
$global:Dirs++
|
2021-01-29 11:07:01 +01:00
|
|
|
|
} else {
|
|
|
|
|
for ($i = 1; $i -lt $Depth; $i++) {
|
|
|
|
|
write-host -nonewline "| "
|
|
|
|
|
}
|
2021-02-06 15:14:47 +01:00
|
|
|
|
write-host "|-$Filename ($($Item.Length) bytes)"
|
2021-04-16 17:27:13 +02:00
|
|
|
|
$global:Files++
|
|
|
|
|
$global:Bytes += $Item.Length
|
2021-01-29 11:07:01 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2021-04-16 17:27:13 +02:00
|
|
|
|
[int]$global:Dirs = 1
|
|
|
|
|
[int]$global:Files = 0
|
|
|
|
|
[int]$global:Bytes = 0
|
2021-04-16 17:22:26 +02:00
|
|
|
|
ListDir $DirTree 0
|
2021-04-16 17:27:13 +02:00
|
|
|
|
write-host "($($global:Dirs) directories, $($global:Files) files, $($global:Bytes) bytes total)"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-01-29 11:07:01 +01:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-01-29 11:07:01 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|