Attempting to use PhysicalFileSystem.EnumerateItems on .NET Framework 4.7.2 will throw a FileNotFoundException. This is caused by attempting to read FileInfo.Length on directories. This pull requests fixes the issue, and enables the Zio.Tests project for .NET Framework 4.7.2 to catch similar issues in the future.
Attempting to use
PhysicalFileSystem.EnumerateItems
on .NET Framework 4.7.2 will throw aFileNotFoundException
. This is caused by attempting to readFileInfo.Length
on directories. This pull requests fixes the issue, and enables theZio.Tests
project for .NET Framework 4.7.2 to catch similar issues in the future.