Removes a directory (recursively) with the input URI. */
| 458 | |
| 459 | /** Removes a directory (recursively) with the input URI. */ |
| 460 | void remove_dir(const std::string& uri) const { |
| 461 | auto& ctx = ctx_.get(); |
| 462 | ctx.handle_error( |
| 463 | tiledb_vfs_remove_dir(ctx.ptr().get(), vfs_.get(), uri.c_str())); |
| 464 | } |
| 465 | |
| 466 | /** Checks if a file with the input URI exists. */ |
| 467 | bool is_file(const std::string& uri) const { |
no test coverage detected