mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Fix CleanDirectoryRecursivelyGeneric
This commit is contained in:
parent
be907ce4bb
commit
c7f2f28a81
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ namespace LibHac.FsSystem
|
||||||
{
|
{
|
||||||
IFileSystem fs = fileSystem;
|
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);
|
string subPath = PathTools.Combine(path, entry.Name);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue