Directory Indexer

The Directory Indexer is a Rust library that provides functionality for indexing and retrieving information about directory structures. It allows you to obtain sets of relative and absolute file paths, as well as mappings between relative and absolute paths.

Features

The Directory Indexer library offers the following features:

Structs

DirNode

The DirNode struct represents a node in the directory tree. It has the following fields:

The DirNode struct provides methods to traverse and manipulate the directory tree:

DirIndexerErr

The DirIndexerErr enum represents potential errors that can occur during directory indexing. It has the following variants:

Functions

The Directory Indexer library provides the following functions for easy access to directory indexing functionality:

Usage

To use the Directory Indexer library, add it as a dependency in your Cargo.toml file:

toml [dependencies] dir_indexer = "0.1.0"

Then, import the necessary modules in your Rust code:

rust use std::path::PathBuf; use std::collections::{HashSet, HashMap}; use dir_indexer::{get_relative_file_paths_set, get_absolute_file_paths_set};

You can now call the available functions to retrieve directory information:

```rust fn main() { let root_path = PathBuf::from("/path/to/directory");

// Get a set of relative file paths
let relative_files = get_relative_file_paths_set(root_path.clone());
println!("Relative File Paths: {:?}", relative_files);

// Get a set of absolute file paths
let absolute_files = get_absolute_file_paths_set(root_path);
println!("Absolute File Paths: {:?}", absolute_files);

} ```

This example demonstrates how to retrieve a set of relative file paths and a set of absolute file paths from a specified root directory.

License

This project is licensed under the MIT License.