includes/std: Add create_directories to std (#250)

This commit is contained in:
Marijn Kneppers
2024-05-19 16:46:05 +02:00
committed by GitHub
parent 5799d1d7ea
commit 891968db53

View File

@@ -109,4 +109,12 @@ namespace auto std::file {
builtin::std::file::remove(handle);
};
/**
Create all directories for the provided path
@param path The path for which all directories should be created
*/
fn create_directories(str path) {
builtin::std::file::create_directories(path);
};
}