mkdir and rmdir basic implementation

This commit is contained in:
vaclavt
2022-03-21 17:46:32 +01:00
parent 2856043feb
commit 2607a50986
8 changed files with 44 additions and 43 deletions

View File

@@ -17,8 +17,8 @@ bool is_path_file(const std::string &path);
bool is_path_dir(const std::string &path);
int mk_path_dir(const std::string &path);
bool mk_path_dir(const std::string &path);
int rm_path_dir(const std::string &path);
bool rm_path_dir(const std::string &path);
MlValue exec_system_cmd(const std::string &path);