nfd-rs
is a Rust binding to the library nativefiledialog, that provides a convenient cross-platform interface to opening file dialogs on Linux, OS X and Windows.
This crate has been tested on Mac, Window and Linux (Ubuntu 14.04) and supports single/mutliple and save dialogs, notice APIs may break with newer versions.
Add the dependency nfd
in your Cargo.toml
toml
[dependencies]
nfd = { git = "https://github.com/saurvs/nfd-rs.git" }
Open a single file dialog ```rust extern crate nfd;
use nfd::Response
fn main() {
let result = nfd::openfiledialog(None, None).unwraporelse(|e| { panic!(e); });
match result { Response::Okay(filepath) => println!("File path = {:?}", filepath), Response::Cancel => println!("User canceled"), } } ```
Open a multi file dialog using builder with jpg files as filter ```rust extern crate nfd;
use nfd::Response
fn main() {
let result = nfd::dialogmultiple().filter("jpg").open().unwrapor_else(|e| { panic!(e); });
match result { Response::OkayMultiple(files) => println!("Files {:?}", files), Response::Cancel => println!("User canceled"), } } ```