| 107 | } |
| 108 | |
| 109 | FileStat DiskUtils::stat(const Path& path) { |
| 110 | return statFromPath(path.toString().c_str()); |
| 111 | } |
| 112 | |
| 113 | bool DiskUtils::isFile(const Path& path) { |
| 114 | return stat(path).isFile(); |
nothing calls this directly
no test coverage detected