3 个版本

使用旧的 Rust 2015

0.0.4 2016年10月19日
0.0.3 2016年8月17日
0.0.1 2016年4月23日

#14 in #file-dialog

Download history • Rust 包仓库 310/week @ 2024-02-26 • Rust 包仓库 352/week @ 2024-03-04 • Rust 包仓库 240/week @ 2024-03-11 • Rust 包仓库 239/week @ 2024-03-18 • Rust 包仓库 261/week @ 2024-03-25 • Rust 包仓库 260/week @ 2024-04-01 • Rust 包仓库 203/week @ 2024-04-08 • Rust 包仓库 252/week @ 2024-04-15 • Rust 包仓库 238/week @ 2024-04-22 • Rust 包仓库 239/week @ 2024-04-29 • Rust 包仓库 218/week @ 2024-05-06 • Rust 包仓库 220/week @ 2024-05-13 • Rust 包仓库 308/week @ 2024-05-20 • Rust 包仓库 321/week @ 2024-05-27 • Rust 包仓库 277/week @ 2024-06-03 • Rust 包仓库 183/week @ 2024-06-10 • Rust 包仓库

1,112 每月下载次数
5 个 crate(2 个直接) 中使用

MIT 许可证

460KB
2.5K SLoC

Visual Studio Project 1K SLoC • Rust 包仓库 C++ 568 SLoC // 0.1% comments • Rust 包仓库 C 471 SLoC // 0.1% comments • Rust 包仓库 Rust 248 SLoC // 0.2% comments • Rust 包仓库 Objective-C 199 SLoC // 0.1% comments • Rust 包仓库 Lua 159 SLoC // 0.1% comments • Rust 包仓库 Scons 104 SLoC // 0.2% comments • Rust 包仓库 Visual Studio Solution 78 SLoC • Rust 包仓库

nfd-rs

nfd-rs 是对库 nativefiledialog 的 Rust 绑定,它提供了一个方便的跨平台接口,用于在 Linux、OS X 和 Windows 上打开文件对话框。

此 crate 已在 Mac、Window 和 Linux(Ubuntu 14.04)上进行了测试,并支持单选/多选和保存对话框,注意 API 可能与新版本不兼容。

用法

  • 在您的 Cargo.toml 中添加依赖项 nfd

    [dependencies]
    nfd = { git = "https://github.com/saurvs/nfd-rs.git" }
    
  • 打开单个文件对话框

    extern crate nfd;
    
    use nfd::Response
    
    fn main() {
    
      let result = nfd::open_file_dialog(None, None).unwrap_or_else(|e| {
      	panic!(e);
      });
    
      match result {
          Response::Okay(file_path) => println!("File path = {:?}", file_path),
          Response::Cancel => println!("User canceled"),
      }
    }
    
  • 使用构建器打开多文件对话框,以 jpg 文件作为过滤器

    extern crate nfd;
    
    use nfd::Response
    
    fn main() {
    
      let result = nfd::dialog_multiple().filter("jpg").open().unwrap_or_else(|e| {
      	panic!(e);
      });
    
      match result {
          Response::OkayMultiple(files) => println!("Files {:?}", files),
          Response::Cancel => println!("User canceled"),
      }
    }
    

屏幕截图

Cocoa on El Capitan

无运行时依赖