| 134 | } |
| 135 | |
| 136 | bool Shell::CreateFile(const std::filesystem::path &path) { |
| 137 | std::ofstream file(path); |
| 138 | return file.is_open(); |
| 139 | } |
| 140 | |
| 141 | bool Shell::RemoveFile(const std::filesystem::path &path) { |
| 142 | boost::system::error_code ec{}; |
nothing calls this directly
no outgoing calls
no test coverage detected