rfd

version Documentation dependency status

Rusty file dialogs for Windows, Linux (GTK), MacOS And WASM32.

Why RFD?

Example

```rust // Sync Dialog let files = FileDialog::new() .addfilter("text", &["txt", "rs"]) .addfilter("rust", &["rs", "toml"]) .setdirectory(&"/") .pickfiles();

// Async Dialog let file = AsyncFileDialog::new() .addfilter("text", &["txt", "rs"]) .addfilter("rust", &["rs", "toml"]) .setdirectory(&"/") .pickfile() .await;

let data = file.read().await; ```

State

GitHub Workflow Status

| API Stability | | ------------- | | 🚧 |

| Feature | Linux | Windows | MacOS [1] | Wasm32 | | ------------ | ----- | ------- | --------- | ------ | | SingleFile | ✔ | ✔ | ✔ | ✔ | | MultipleFile | ✔ | ✔ | ✔ | ✔ | | PickFolder | ✔ | ✔ | ✔ | ✖ | | SaveFile | ✔ | ✔ | ✔ | ✖ | | | | | | | | Filters | ✔ | ✔ | ✔ | ✔ | | StartingPath | ✔ | ✔ | ✔ | ✖ | | Async | ✔ | ✔ | ✔ | ✔ |

[1] Macos Sync dialog freezes when used with winit (same way as nfd) Caused by winit #1779

Diference bettwen MacOS Windowed App and MacOS NonWindowed App

rfd-extras

AKA features that are not file related

| Feature | Linux | Windows | MacOS | Wasm32 | | ------------- | ----- | ------- | ----- | ------ | | MessageDialog | ✔ | ✔ | ✔ | ✔ | | PromptDialog | | | | | | ColorPicker | | | | |