Skip to main content

open/
open.rs

1fn main() -> Result<(), win_desktop_utils::Error> {
2    win_desktop_utils::open_with_verb("properties", r"C:\Windows\notepad.exe")?;
3    win_desktop_utils::open_url(" https://www.rust-lang.org ")?;
4    Ok(())
5}