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.
Add the following dependency to your Cargo.toml
file:
toml
[dependencies]
dir_indexer = "0.0.1"
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};
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");
```rust
// Retrieve a set of relative file paths
let relativepaths: HashSet
// Retrieve a set of absolute file paths
let absolutepaths: HashSet
// Get a mapping of relative file paths to absolute file paths
let rl2abmap: HashMap
// Get a mapping of absolute file paths to relative file paths
let ab2rlmap: HashMap
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
// Retrieve a set of absolute file paths using the utility function
let absolutepaths: HashSet
// Get a mapping of relative file paths to absolute file paths using the utility function
let rl2abmap: HashMap
// Get a mapping of absolute file paths to relative file paths using the utility function
let ab2rlmap: HashMap
This project is licensed under the MIT License.
Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request.
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.