Extend FsUtils

This commit is contained in:
2023-10-11 09:54:44 +02:00
parent 2a49949e0c
commit 31eef79f22
2 changed files with 28 additions and 6 deletions

View File

@@ -10,10 +10,12 @@
namespace OpenVulkano
{
class FsUtils
struct FsUtils
{
static bool DeleteEmptyDirs(const std::filesystem::path& dir, bool recursive = true);
static bool DeleteEmptySubTrees(const std::filesystem::path& dir);
static bool IsTreeEmpty(const std::filesystem::path& dir);
};
}