pub fn commands<T: AsRef<OsStr>>(path: T) -> Vec<Command>
Expand description
Get multiple commands that open path
with the default application.
Each command represents a launcher to try.
ยงExamples
let path = "http://rust-lang.org";
assert!(win_open::commands(path)[0].status()?.success());