Create a directory and all parent directories.
(&self, path: &str)
| 237 | |
| 238 | /// Create a directory and all parent directories. |
| 239 | fn create_dir_all(&self, path: &str) -> Result<(), Self::Error> { |
| 240 | let abs_path = self.resolve_path(path)?; |
| 241 | fs::create_dir_all(&abs_path) |
| 242 | } |
| 243 | |
| 244 | /// Remove a file or directory. |
| 245 | /// |