You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello we are using Directory.EnumerateFiles to find files on a DFSR file share like so:
Directory.EnumerateFiles(_path, "*", new EnumerationOptions()
{
RecurseSubdirectories = true
});
EnumerationOptions is supposed to skip system files by default, and my understanding is that DFSR related files like ConflictAndDeletedManifest.xml are marked as system files, however they are being returned by the EnumerateFiles function.
.NET 9
The text was updated successfully, but these errors were encountered:
Hello we are using Directory.EnumerateFiles to find files on a DFSR file share like so:
EnumerationOptions is supposed to skip system files by default, and my understanding is that DFSR related files like ConflictAndDeletedManifest.xml are marked as system files, however they are being returned by the EnumerateFiles function.
.NET 9
The text was updated successfully, but these errors were encountered: