filesystem: use std for IsFolder

Remove custom platform implementation of IsFolder and replace
single use with `std::filesystem::is_directory`.
This commit is contained in:
Sandy Carter
2020-04-09 09:52:57 -04:00
committed by Rick Gibbed
parent 05a62673f7
commit a9fa38c88b
4 changed files with 1 additions and 18 deletions

View File

@@ -52,9 +52,6 @@ bool CreateFolder(const std::filesystem::path& path);
// Returns true if the path was found and removed.
bool DeleteFolder(const std::filesystem::path& path);
// Returns true if the given path exists and is a folder.
bool IsFolder(const std::filesystem::path& path);
// Creates an empty file at the given path.
bool CreateFile(const std::filesystem::path& path);