MCPcopy Create free account
hub / github.com/HexHive/NASS / MkDirRecursive

Function MkDirRecursive

fuzz/libfuzzer/FuzzerIO.cpp:198–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198bool 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
208void RmDirRecursive(const std::string &Dir) {
209 IterateDirRecursive(

Callers 1

ValidateDirectoryExistsFunction · 0.85

Calls 3

MkDirRecursiveInnerFunction · 0.85
IsDirectoryFunction · 0.70
emptyMethod · 0.45

Tested by

no test coverage detected