Skip to content

Commit

Permalink
Make sure that Hidden files are included in the EnumeratedFiles (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
bijington authored Nov 3, 2022
1 parent 66a0218 commit 1c600d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Verify/Verifier/InnerVerifier_Directory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public async Task<VerifyResult> VerifyDirectory(
pattern ??= "*";
option ??= new()
{
RecurseSubdirectories = true
RecurseSubdirectories = true,
AttributesToSkip = FileAttributes.System
};
var targets = await ToTargets(
path,
Expand Down

0 comments on commit 1c600d8

Please sign in to comment.