mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-29 16:16:47 +01:00
Updated check-xml-file.ps1 and check-xml-files.ps1
This commit is contained in:
parent
d9c784fdbf
commit
16983fbd21
@ -27,6 +27,7 @@ try {
|
|||||||
$ReaderSettings.ValidationType = [System.Xml.ValidationType]::Schema
|
$ReaderSettings.ValidationType = [System.Xml.ValidationType]::Schema
|
||||||
$ReaderSettings.ValidationFlags = [System.Xml.Schema.XmlSchemaValidationFlags]::ProcessInlineSchema -bor [System.Xml.Schema.XmlSchemaValidationFlags]::ProcessSchemaLocation
|
$ReaderSettings.ValidationFlags = [System.Xml.Schema.XmlSchemaValidationFlags]::ProcessInlineSchema -bor [System.Xml.Schema.XmlSchemaValidationFlags]::ProcessSchemaLocation
|
||||||
$ReaderSettings.add_ValidationEventHandler({ $script:ErrorCount++ })
|
$ReaderSettings.add_ValidationEventHandler({ $script:ErrorCount++ })
|
||||||
|
$ReaderSettings.DtdProcessing = [System.Xml.DtdProcessing]::Parse
|
||||||
$Reader = [System.Xml.XmlReader]::Create($XmlFile.FullName, $ReaderSettings)
|
$Reader = [System.Xml.XmlReader]::Create($XmlFile.FullName, $ReaderSettings)
|
||||||
while ($Reader.Read()) { }
|
while ($Reader.Read()) { }
|
||||||
$Reader.Close()
|
$Reader.Close()
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Checks all XML files in a directory tree
|
Checks all XML files in a directory tree
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script verifies each XML file (with suffix .xml) in the given directory tree for validity.
|
This PowerShell script verifies any XML file (with suffix .xml) in the given directory tree for validity.
|
||||||
.PARAMETER path
|
.PARAMETER path
|
||||||
Specifies the path to the directory tree (current working dir by default)
|
Specifies the path to the directory tree (current working dir by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./check-xml-files.ps1 C:\Windows
|
PS> ./check-xml-files.ps1 C:\Windows
|
||||||
...
|
...
|
||||||
✔️ Checked 3387 XML files within 📂C:\Windows in 174 sec
|
✔️ Checked 3387 XML files (2462 invalid, 925 valid) within 📂C:\Windows in 116 sec
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -19,19 +19,19 @@ param([string]$path = "$PWD")
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
|
|
||||||
$path = Resolve-Path "$path"
|
$path = Resolve-Path "$path"
|
||||||
[int]$numXmlFiles = 0
|
Write-Progress "Scanning any XML file within $path..."
|
||||||
|
[int]$valid = [int]$invalid = 0
|
||||||
|
|
||||||
Write-Progress "Scanning all XML files within $path..."
|
|
||||||
Get-ChildItem -path "$path" -attributes !Directory -recurse -force | Where-Object { $_.Name -like "*.xml" } | Foreach-Object {
|
Get-ChildItem -path "$path" -attributes !Directory -recurse -force | Where-Object { $_.Name -like "*.xml" } | Foreach-Object {
|
||||||
& $PSScriptRoot/check-xml-file.ps1 "$($_.FullName)"
|
& $PSScriptRoot/check-xml-file.ps1 "$($_.FullName)"
|
||||||
$numXmlFiles++
|
if ($lastExitCode -eq 0) { $valid++ } else { $invalid++ }
|
||||||
}
|
}
|
||||||
Write-Progress -completed "Done."
|
Write-Progress -completed "Done."
|
||||||
|
|
||||||
|
[int]$total = $valid + $invalid
|
||||||
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
||||||
"✔️ Checked $numXmlFiles XML files within 📂$path in $elapsed sec"
|
"✔️ Checked $total XML files ($invalid invalid, $valid valid) within 📂$path in $elapsed sec"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user