Update check-symlinks.ps1

This commit is contained in:
Markus Fleschutz 2022-04-27 13:30:13 +02:00
parent 9897b11d0b
commit c81ae078b8

View File

@ -3,16 +3,16 @@
Checks every symlink in a folder Checks every symlink in a folder
.DESCRIPTION .DESCRIPTION
This PowerShell script checks every symlink in a folder (including subfolders). This PowerShell script checks every symlink in a folder (including subfolders).
Returns the number of broken symlinks as exit value. It returns the number of broken symlinks as exit value.
.PARAMETER folder .PARAMETER folder
Specifies the path to the directory tree Specifies the path to the folder
.EXAMPLE .EXAMPLE
PS> ./check-symlinks . PS> ./check-symlinks .
0 out of 10 symlinks are broken in 📂/home/markus found 2 broken symlinks at 📂/home/markus (10 total) in 17 sec
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
Author: Markus Fleschutz / License: CC0 Author: Markus Fleschutz | License: CC0
#> #>
param([string]$folder = "") param([string]$folder = "")
@ -40,7 +40,13 @@ try {
} }
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ checked $NumTotal symlinks in 📂$FullPath ($NumBroken are broken) in $Elapsed sec" if ($NumTotal -eq 0) {
"✔️ found no symlink at 📂$FullPath in $Elapsed sec"
} elseif ($NumBroken -eq 0) {
"✔️ found $NumTotal valid symlinks at 📂$FullPath in $Elapsed sec"
} else {
"✔️ found $NumBroken broken symlinks at 📂$FullPath ($NumTotal total) in $Elapsed sec"
}
exit $NumBroken exit $NumBroken
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"