MLIB
Loading...
Searching...
No Matches
rdir.h
Go to the documentation of this file.
1
6#pragma once
7
8#if __has_include("defs.h")
9#include "defs.h"
10#endif
11
12#include <string>
13
14namespace mlib {
15
16int r_mkdir (const std::string& dir);
17int r_rmdir (const std::string& dir);
18
19} // namespace mlib
int r_rmdir(const std::string &dir)
Recursively remove a directory.
Definition rdir.cpp:63
int r_mkdir(const std::string &dir)
Recursively create a new directory.
Definition rdir.cpp:23