PowerShell/Scripts/list-hidden-files.ps1

25 lines
668 B
PowerShell
Raw Normal View History

2021-04-17 18:38:38 +02:00
#!/usr/bin/pwsh
2021-02-27 11:37:50 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX list-hidden-files.ps1 [<dir-tree>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION lists hidden files within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-27 11:37:50 +01:00
#>
2021-04-17 18:38:38 +02:00
param($DirTree = "$PWD")
2021-02-27 11:37:50 +01:00
try {
2021-04-17 18:38:38 +02:00
$DirTree = resolve-path "$DirTree/"
2021-02-27 11:37:50 +01:00
[int]$Count = 0
write-progress "Listing hidden files in $DirTree ..."
2021-04-17 18:38:38 +02:00
get-childItem "$DirTree" -attributes Hidden -recurse | foreach-object {
"📄 $($_.FullName)"
2021-02-27 11:37:50 +01:00
$Count++
}
2021-04-17 18:38:38 +02:00
"✔️ directory tree $DirTree has $Count hidden file(s)"
2021-02-27 11:37:50 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}