(&self, path: &str)
| 589 | } |
| 590 | |
| 591 | fn create_dir_all(&self, path: &str) -> Result<(), Self::Error> { |
| 592 | self.ensure_directories(path); |
| 593 | Ok(()) |
| 594 | } |
| 595 | |
| 596 | fn remove_path(&self, path: &str, recursive: bool) -> Result<(), Self::Error> { |
| 597 | let mut files = self.files.borrow_mut(); |