Skip to content

Commit

Permalink
Fix CleanDirectoryRecursivelyGeneric
Browse files Browse the repository at this point in the history
  • Loading branch information
Thealexbarney committed Oct 17, 2019
1 parent be907ce commit c7f2f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LibHac/FsSystem/FileSystemExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public static void CleanDirectoryRecursivelyGeneric(IFileSystem fileSystem, stri
{
IFileSystem fs = fileSystem;

foreach (DirectoryEntryEx entry in fileSystem.EnumerateEntries(path, "*"))
foreach (DirectoryEntryEx entry in fileSystem.EnumerateEntries(path, "*", SearchOptions.Default))
{
string subPath = PathTools.Combine(path, entry.Name);

Expand Down

0 comments on commit c7f2f28

Please sign in to comment.