Skip to content

Commit

Permalink
fix: support Directory.GetFileSystemEntries with enumeration options (
Browse files Browse the repository at this point in the history
#966)

Implement the missing wrapper method `Directory.GetFileSystemEntries(string, string, EnumerationOptions)`.
  • Loading branch information
vbreuss committed Apr 11, 2023
1 parent d24adad commit f6c2971
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public override string[] GetFileSystemEntries(string path, string searchPattern,
/// <inheritdoc />
public override string[] GetFileSystemEntries(string path, string searchPattern, EnumerationOptions enumerationOptions)
{
throw new NotImplementedException();
return Directory.GetFileSystemEntries(path, searchPattern, enumerationOptions);
}
#endif

Expand Down

0 comments on commit f6c2971

Please sign in to comment.