(&self, relative_path: &str)
| 352 | |
| 353 | #[cfg(not(target_arch = "wasm32"))] |
| 354 | fn resolve_path(&self, relative_path: &str) -> Result<PathBuf, String> { |
| 355 | let normalized = normalize_relative_path(relative_path, "storage file path")?; |
| 356 | Ok(join_normalized_path(&self.root_path, &normalized)) |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | #[cfg(target_os = "android")] |
no test coverage detected