1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibCore: Add File::ensure_directories()

This commit is contained in:
Tim Schumacher 2022-03-14 11:19:10 +01:00 committed by Brian Gianforcaro
parent f44cd168b0
commit 62f0fa818d
2 changed files with 14 additions and 8 deletions

View file

@ -38,6 +38,7 @@ public:
static bool exists(String const& filename);
static ErrorOr<size_t> size(String const& filename);
static bool ensure_parent_directories(String const& path);
static bool ensure_directories(String const& path);
static String current_working_directory();
static String absolute_path(String const& path);