PowerShell/Scripts/list-files.ps1
2021-04-07 15:17:49 +02:00

22 lines
509 B
PowerShell
Executable File

#!/usr/bin/pwsh
<#
.SYNTAX list-files.ps1 [<folder>]
.DESCRIPTION lists all files in the given folder and also in every subfolder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Folder = "")
if ($Folder -eq "" ) {
$Folder = read-host "Enter path to folder"
}
try {
Get-ChildItem -path $Folder -recurse | select FullName
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}