1use std::process::Command; 2 3#[tauri::command] 4pub fn open_folder(url: &str) { 5 Command::new("explorer.exe") 6 .arg(format!("/select,{}", url)) 7 .spawn() 8 .unwrap(); 9}