From 8ee84ee519a385b9edc2ad1e00cf8881d8004beb Mon Sep 17 00:00:00 2001 From: Collecting Date: Fri, 19 Dec 2025 18:40:19 +0000 Subject: [PATCH] fs: Fix Directory Scanning w/ NTFS Signed-off-by: Collecting --- src/common/fs/fs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/fs/fs.h b/src/common/fs/fs.h index ce3eb309a..058cd498b 100644 --- a/src/common/fs/fs.h +++ b/src/common/fs/fs.h @@ -399,6 +399,10 @@ void IterateDirEntriesRecursively(const std::filesystem::path& path, const DirEntryCallable& callback, DirEntryFilter filter = DirEntryFilter::All); +void IterateDirEntriesRecursivelyInternal(const std::filesystem::path& path, + const DirEntryCallable& callback, + DirEntryFilter filter, int depth); + #ifdef _WIN32 template void IterateDirEntriesRecursively(const Path& path, const DirEntryCallable& callback,