filesystem: use std for CreateFolder
Remove custom platform implementation of `CreateFolder` and replace uses with `std::filesystem::create_directories` which creates paths recursively.
This commit is contained in:
committed by
Rick Gibbed
parent
c8e64da4eb
commit
69bcf59c79
@@ -47,7 +47,7 @@ std::pair<std::filesystem::path, std::filesystem::path> Shader::Dump(
|
||||
auto target_path = base_path;
|
||||
if (!target_path.empty()) {
|
||||
target_path = std::filesystem::absolute(target_path);
|
||||
xe::filesystem::CreateFolder(target_path);
|
||||
std::filesystem::create_directories(target_path);
|
||||
}
|
||||
|
||||
auto base_name =
|
||||
|
||||
Reference in New Issue
Block a user