(current: &Path)
| 52 | } |
| 53 | |
| 54 | fn canonical_dev_data_dir(current: &Path) -> Option<PathBuf> { |
| 55 | current.parent().map(|p| p.join(CANONICAL_DEV_IDENTIFIER)) |
| 56 | } |
| 57 | |
| 58 | fn legacy_app_data_dir(current: &Path) -> Option<PathBuf> { |
| 59 | let name = current.file_name()?.to_str()?; |
no outgoing calls