#directory #search #find #folder #file #txt-file

search_dir

A Rust library for finding the first matching item in a directory

4 releases

0.1.3 Jul 6, 2022
0.1.2 Jun 30, 2022
0.1.1 Jun 19, 2022
0.1.0 Jun 19, 2022

#16 in #txt-file

Apache-2.0

16KB
231 lines

Rust

search_dir

A Rust library for finding the first matching item in a directory.

Usage

Add the following to your Cargo.toml:

[dependencies]
search_dir = "0.1.2"

Example

use std::fs;
use std::env;
use std::error::Error;
use search_dir::search::{ItemType, find_item};

fn main()->Result<(), Box<dyn Error>> {
   //creates directory we want to search
   fs::create_dir_all("./some/awesome/really/cool/")?;
   fs::write("./some/awesome/really/cool/hello.txt", "this is a file")?;
   let mut current_dir = env::current_dir()?;

   //searches for a file called `hello.txt`
   let found_path = find_item(&current_dir, "hello.txt", ItemType::File)?;

   println!("{:?}", found_path);
   current_dir.push("some");
   fs::remove_dir_all(current_dir)?;
   Ok(())
}

License

This project is licensed under Apache License, Version 2.0

Dependencies

~5–17MB
~206K SLoC