Crates.io | open |
lib.rs | open |
version | |
source | src |
created_at | 2015-02-27 16:30:59.471198+00 |
updated_at | 2025-01-05 15:03:38.023011+00 |
description | Open a path or URL using the program configured on the system |
homepage | |
repository | https://github.com/Byron/open-rs |
max_upload_size | |
id | 1490 |
Cargo.toml error: | TOML parse error at line 25, column 1 | 25 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Use this library to open a path or URL using the program configured on the system. It is equivalent to running one of the following:
# macOS
$ open <path-or-url>
# Windows
$ start <path-or-url>
# Linux
$ xdg-open <path-or-url> || gio open <path-or-url> || gnome-open <path-or-url> || kde-open <path-or-url> || wslview <path-or-url>
Add this to your Cargo.toml
[dependencies]
open = "5"
…and open something using…
open::that("https://rust-lang.org");
…or, open something with an application of your choice
open::with("https://rust-lang.org", "firefox");
Follow this link for the API docs.
This crate also implements a binary that acts like an opener itself.
cargo run 'file to open'
The implementation is based on the respective functionality of Cargo, but was improved to allow some error handling.