| 196 | } |
| 197 | |
| 198 | bool MkDirRecursive(const std::string &Dir) { |
| 199 | if (Dir.empty()) |
| 200 | return false; |
| 201 | |
| 202 | if (IsDirectory(Dir)) |
| 203 | return true; |
| 204 | |
| 205 | return MkDirRecursiveInner(Dir); |
| 206 | } |
| 207 | |
| 208 | void RmDirRecursive(const std::string &Dir) { |
| 209 | IterateDirRecursive( |
no test coverage detected