pub async fn is_absolute(path: &str) -> Result<bool, Error>
Returns whether the path is absolute or not.
use tauri_sys::path::is_absolute; assert!(is_absolute("/home/tauri").await?);