win-desktop-utils 0.5.7

Windows desktop helpers for shell, shortcuts, app data, elevation, and single-instance Rust apps
Documentation
1
2
3
4
5
6
7
use std::ffi::OsString;

fn main() -> Result<(), win_desktop_utils::Error> {
    let args = [OsString::from("--help")];
    win_desktop_utils::run_with_verb("open", "notepad.exe", &args)?;
    Ok(())
}