Skip to content

Commit

Permalink
update post: fix example code
Browse files Browse the repository at this point in the history
  • Loading branch information
diecknet committed Nov 27, 2024
1 parent dc3e18d commit 1c815f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $AlleOrdner = Get-ChildItem testdir\ -Directory
$Dateien = Get-ChildItem $DieserOrdner.FullName -File
:Datei foreach($DieseDatei in $Dateien) {
if($DieseDatei.Length -ge 1KB) {
Write-Host "Die Datei $($DieseDatei.Name) ist größer oder gleich 1 KB - Überspringe Schleifendurchgang" -ForegroundColor Red
Write-Host "Die Datei $($DieseDatei.Name) ist größer oder gleich 1 KB - Breche Ordner-Schleife ab" -ForegroundColor Red
break Ordner
}
Write-Host "Inhalt von $($DieseDatei.Name): $(Get-Content $DieseDatei.FullName)" -ForegroundColor Yellow
Expand Down

0 comments on commit 1c815f1

Please sign in to comment.