diff --git a/crates/tauri/src/path/android.rs b/crates/tauri/src/path/android.rs index 03b1f5f93..aa185f84f 100644 --- a/crates/tauri/src/path/android.rs +++ b/crates/tauri/src/path/android.rs @@ -174,6 +174,7 @@ impl PathResolver { /// - **Linux:** Resolves to `$HOME`. /// - **macOS:** Resolves to `$HOME`. /// - **Windows:** Resolves to `{FOLDERID_Profile}`. + /// - **iOS**: Cannot be written to directly, use one of the app paths instead. pub fn home_dir(&self) -> Result { self.call_resolve("getHomeDir") } diff --git a/crates/tauri/src/path/desktop.rs b/crates/tauri/src/path/desktop.rs index 37fbb4f41..96ea0bd7e 100644 --- a/crates/tauri/src/path/desktop.rs +++ b/crates/tauri/src/path/desktop.rs @@ -149,6 +149,7 @@ impl PathResolver { /// - **Linux:** Resolves to `$HOME`. /// - **macOS:** Resolves to `$HOME`. /// - **Windows:** Resolves to `{FOLDERID_Profile}`. + /// - **iOS**: Cannot be written to directly, use one of the app paths instead. pub fn home_dir(&self) -> Result { dirs::home_dir().ok_or(Error::UnknownPath) }