| 38 | |
| 39 | namespace sparse_consolidate { |
| 40 | void remove_array(const std::string& array_name) { |
| 41 | Context ctx; |
| 42 | VFS vfs(ctx); |
| 43 | if (vfs.is_dir(array_name)) |
| 44 | vfs.remove_dir(array_name); |
| 45 | } |
| 46 | |
| 47 | void create_array(const std::string& array_name) { |
| 48 | Context ctx; |
no test coverage detected