10 releases
0.5.2 | Jan 30, 2023 |
---|---|
0.5.0 | Jun 12, 2021 |
0.4.1 | Sep 30, 2019 |
0.4.0 | May 2, 2019 |
0.3.2 | Nov 15, 2018 |
#20 in Operating systems
238,134 downloads per month
Used in 264 crates
(49 directly)
17KB
344 lines
Opener
This crate provides the ability to open a file or link with the default program configured on the system.
See the docs for more details:
Docs
License
Licensed under either of
- Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (http://opensource.org/licenses/MIT)
at your option.
Third party software
See LICENSE-THIRD-PARTY
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
lib.rs
:
This crate provides the [open
] function, which opens a file or link with the default program
configured on the system:
# fn main() -> Result<(), ::opener::OpenError> {
// open a website
opener::open("https://www.rust-lang.org")?;
// open a file
opener::open("../Cargo.toml")?;
# Ok(())
# }
An [open_browser
] function is also provided, for when you intend on opening a file or link in a
browser, specifically. This function works like the [open
] function, but explicitly allows
overriding the browser launched by setting the $BROWSER
environment variable.
Dependencies
~150KB