| 456 | } |
| 457 | |
| 458 | bool MakeDir(const char *path, bool recursive) { |
| 459 | if (!recursive) |
| 460 | return mkdir(path, 0777) >= 0; |
| 461 | return MakeDirRec(S(path)); |
| 462 | } |
| 463 | |
| 464 | bool MakeDir(Str *path, bool recursive) { |
| 465 | if (!recursive) |
nothing calls this directly
no test coverage detected