PowerShell/scripts/check-xml-files.ps1

40 lines
1.3 KiB
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2023-12-06 10:54:36 +01:00
.SYNOPSIS
Checks all XML files in a directory tree
2023-12-06 10:54:36 +01:00
.DESCRIPTION
This PowerShell script verifies any XML file (with suffix .xml) in the given directory tree for validity.
2023-12-06 10:54:36 +01:00
.PARAMETER path
Specifies the path to the directory tree (current working dir by default)
.EXAMPLE
PS> ./check-xml-files.ps1 C:\Windows
...
2024-10-01 13:37:53 +02:00
Checked 3387 XML files (2462 invalid, 925 valid) within 📂C:\Windows in 116 sec
2023-12-06 10:54:36 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$path = "$PWD")
try {
$stopWatch = [system.diagnostics.stopwatch]::startNew()
$path = Resolve-Path "$path"
Write-Progress "Scanning any XML file within $path..."
[int]$valid = [int]$invalid = 0
2023-12-06 10:54:36 +01:00
Get-ChildItem -path "$path" -attributes !Directory -recurse -force | Where-Object { $_.Name -like "*.xml" } | Foreach-Object {
2023-12-06 10:54:36 +01:00
& $PSScriptRoot/check-xml-file.ps1 "$($_.FullName)"
if ($lastExitCode -eq 0) { $valid++ } else { $invalid++ }
2023-12-06 10:54:36 +01:00
}
Write-Progress -completed "Done."
[int]$total = $valid + $invalid
2023-12-06 10:54:36 +01:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2024-10-01 13:37:53 +02:00
"✅ Checked $total XML files ($invalid invalid, $valid valid) within 📂$path in $elapsed sec"
2023-12-06 10:54:36 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}