| 250 | /// Passing an empty path ("" or "/") is disallowed, see DeleteRootDirContents. |
| 251 | virtual Status DeleteDirContents(const std::string& path, bool missing_dir_ok) = 0; |
| 252 | Status DeleteDirContents(const std::string& path) { |
| 253 | return DeleteDirContents(path, false); |
| 254 | } |
| 255 | |
| 256 | /// Async version of DeleteDirContents. |
| 257 | virtual Future<> DeleteDirContentsAsync(const std::string& path, bool missing_dir_ok); |
no outgoing calls
no test coverage detected