use std::path::Path;
use std::process::{Command, Stdio};
pub fn open_file(path: impl AsRef<Path>) {
let path = path.as_ref();
#[cfg(target_os = "linux")]
{
let _ = Command::new("xdg-open")
.arg(path)
.stdin(Stdio::null())
.stdout(Stdio::null())
.stderr(Stdio::null())
.spawn();
}
#[cfg(target_os = "macos")]
{
let _ = Command::new("open")
.arg(path)
.stdin(Stdio::null())
.stdout(Stdio::null())
.stderr(Stdio::null())
.spawn();
}
#[cfg(target_os = "windows")]
{
let _ = Command::new("cmd")
.args(["/C", "start", "", &path.display().to_string()])
.stdin(Stdio::null())
.stdout(Stdio::null())
.stderr(Stdio::null())
.spawn();
}
}