Directory Indexer

The Directory Indexer is a Rust library that allows you to index and retrieve file paths within a directory tree. It provides convenient methods to obtain relative and absolute file paths, as well as mappings between relative and absolute paths.

Features

Installation

Add the following dependency to your Cargo.toml file:

toml [dependencies] dir_indexer = "0.0.1"

Usage

  1. Import the necessary modules and types:

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

  1. Create a DirIndexer instance by providing the root directory path:

rust let root_path = PathBuf::from("/path/to/root/directory"); let dir_indexer = DirIndexer::from(root_path).expect("Failed to create DirIndexer");

  1. Use the available methods to retrieve the desired file path information:

```rust // Retrieve a set of relative file paths let relativepaths: HashSet = dirindexer.getrelativefilepathsset();

// Retrieve a set of absolute file paths let absolutepaths: HashSet = dirindexer.getabsolutefilepathsset();

// Get a mapping of relative file paths to absolute file paths let rl2abmap: HashMap = dirindexer.getrl2abfilepathsmap();

// Get a mapping of absolute file paths to relative file paths let ab2rlmap: HashMap = dirindexer.getab2rlfilepathsmap(); ```

Alternatively, you can use the provided utility functions for a simplified interface:

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

// Retrieve a set of relative file paths using the utility function let relativepaths: HashSet = getrelativefilepathsset(rootpath.clone());

// Retrieve a set of absolute file paths using the utility function let absolutepaths: HashSet = getabsolutefilepathsset(rootpath.clone());

// Get a mapping of relative file paths to absolute file paths using the utility function let rl2abmap: HashMap = getrl2abfilepathsmap(rootpath.clone());

// Get a mapping of absolute file paths to relative file paths using the utility function let ab2rlmap: HashMap = getab2rlfilepathsmap(rootpath.clone()); ```

License

This project is licensed under the MIT License.

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request.

Acknowledgements

Contact

For any inquiries or questions, feel free to contact the project maintainer at mailmeatsri14@gmail.com.


Feel free to customize the README file further based on your specific project details, including additional sections or relevant information.