convert File::ScanDirectoryTree to std::filesystem

This commit is contained in:
Shawn Hoffman
2023-01-10 05:13:18 -08:00
parent 7e6436db34
commit a184d70193
2 changed files with 118 additions and 102 deletions

View File

@ -120,12 +120,8 @@ public:
u64 GetSize() const;
private:
#ifdef ANDROID
void AndroidContentInit(const std::string& path);
#endif
std::filesystem::path m_path;
std::filesystem::file_status m_status;
std::uintmax_t m_size;
bool m_exists;
};