| 66 | } |
| 67 | |
| 68 | bool StdFileSystem::exists(const Path &path) |
| 69 | { |
| 70 | auto stat = stat_file(path); |
| 71 | return stat.is_file || stat.is_directory; |
| 72 | } |
| 73 | |
| 74 | bool StdFileSystem::create_directory(const Path &path) |
| 75 | { |
no outgoing calls
no test coverage detected