| 200 | } // namespace |
| 201 | |
| 202 | Future<> FileSystem::DeleteDirContentsAsync(const std::string& path, |
| 203 | bool missing_dir_ok) { |
| 204 | return FileSystemDefer(this, default_async_is_sync_, |
| 205 | [path, missing_dir_ok](std::shared_ptr<FileSystem> self) { |
| 206 | return self->DeleteDirContents(path, missing_dir_ok); |
| 207 | }); |
| 208 | } |
| 209 | |
| 210 | Future<> FileSystem::DeleteDirContentsAsync(const std::string& path) { |
| 211 | return DeleteDirContentsAsync(path, false); |
nothing calls this directly
no test coverage detected