#prompt #user #file #pick #interactively #directory #label

file_picker

Prompts the user to pick a file interactively from the current directory

7 releases

0.3.4 Nov 28, 2024
0.3.3 Nov 24, 2024
0.2.2 Nov 20, 2024
0.1.0 Nov 15, 2024

#766 in Rust patterns

Download history 226/week @ 2024-11-12 335/week @ 2024-11-19 190/week @ 2024-11-26 4/week @ 2024-12-03 7/week @ 2024-12-10

557 downloads per month

MIT/Apache

66KB
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 the PathBuf of 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.5–9.5MB
~98K SLoC