1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use std::io;
use std::process::{Command, ExitStatus};
use std::ffi::OsStr;
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
pub fn that<T:AsRef<OsStr>+Sized>(path: T) -> io::Result<ExitStatus> {
let mut last_err: io::Result<ExitStatus> = Err(io::Error::from_raw_os_error(0));
for program in &["xdg-open", "gnome-open", "kde-open"] {
match Command::new(program).arg(path.as_ref()).spawn() {
Ok(mut child) => return child.wait(),
Err(err) => {
last_err = Err(err);
continue;
},
}
}
last_err
}
#[cfg(target_os = "windows")]
pub fn that<T:AsRef<OsStr>+Sized>(path: T) -> io::Result<ExitStatus> {
let mut cmd = Command::new("cmd");
cmd.arg("/C").arg("start").arg("");
if let Some(s) = path.as_ref().to_str() {
cmd.arg(s.replace("&", "^&"));
} else {
cmd.arg(path.as_ref());
}
try!(cmd.spawn()).wait()
}
#[cfg(target_os = "macos")]
pub fn that<T:AsRef<OsStr>+Sized>(path: T) -> io::Result<ExitStatus> {
try!(Command::new("open").arg(path.as_ref()).spawn()).wait()
}