mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
22 lines
509 B
PowerShell
Executable File
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
|
|
}
|