| 430 | } |
| 431 | |
| 432 | int mkpath(char* path, int mode) { |
| 433 | return NFs::MakeDirectoryRecursive(path, NFs::EFilePermission(mode)) ? 0 : -1; |
| 434 | } |
| 435 | |
| 436 | // Implementation of realpath in FreeBSD (version 9.0 and less) and GetFullPathName in Windows |
| 437 | // did not require last component of the file name to exist (other implementations will fail |
nothing calls this directly
no test coverage detected