(app_name: &str, relative_path: &str)
| 226 | validate_dlc_name(name)?; |
| 227 | let root = root.as_ref().to_path_buf(); |
| 228 | if !root.exists() { |
| 229 | return Err(io::Error::new( |
| 230 | io::ErrorKind::NotFound, |
| 231 | format!("dlc disk root not found: {}", root.display()), |
| 232 | )); |
| 233 | } |