9 unstable releases (3 breaking)
| 0.4.1 | May 22, 2025 |
|---|---|
| 0.4.0 | Jan 2, 2025 |
| 0.3.4 | Nov 28, 2024 |
| 0.2.2 | Nov 20, 2024 |
| 0.1.0 | Nov 15, 2024 |
#908 in Filesystem
629 downloads per month
80KB
2.5K
SLoC
Prompts the user to pick a file interactively from the current directory.
Arguments
label- A string slice that holds the prompt label to display to the user.
Returns
std::io::Result<PathBuf>- Returns thePathBufof the selected file.
Examples
fn main() -> std::io::Result<()> {
let file_path = file_picker::file_picker("Select a file:")?;
println!("You selected the file: {}", file_path.display());
let dir_path = file_picker::dir_picker("Select a directory:")?;
println!("You selected the directory: {}", dir_path.display());
}
Dependencies
~2–13MB
~114K SLoC