changes here, changes there

This commit is contained in:
2021-02-16 19:53:39 +01:00
parent c1532e78b1
commit 4b93f39375
9 changed files with 332 additions and 121 deletions

View File

@@ -9,13 +9,16 @@
std::string read_file_contents(const std::string &filename);
int write_file_contents(const std::string &filename, const std::string &content);
MlValue list_dir(const std::string &path);
bool is_path_file(const std::string &path);
bool is_path_dir(const std::string &path);
int mk_dir(const std::string &path);
int mk_path_dir(const std::string &path);
int rm_dir(const std::string &path);
int rm_path_dir(const std::string &path);
MlValue exec_system_cmd(const std::string &path);