#unix-file #hierarchy #unix #directory #path #sandbox

pathio

Data type for storing generic data on a virtual path tree hierarchy. The data is stored in memory, this is not OS file system abstraction, but immitation

16 releases

0.2.3 Nov 17, 2023
0.2.2 Nov 15, 2023
0.1.6 Nov 4, 2023
0.1.5 Oct 1, 2023
0.0.5 Sep 21, 2023

#353 in Filesystem

Download history 55/week @ 2024-01-01 13/week @ 2024-01-08 7/week @ 2024-01-15 5/week @ 2024-02-12 253/week @ 2024-02-19 24/week @ 2024-02-26 15/week @ 2024-03-04 19/week @ 2024-03-11 13/week @ 2024-03-18 18/week @ 2024-03-25 34/week @ 2024-04-01 9/week @ 2024-04-08 13/week @ 2024-04-15

75 downloads per month
Used in 6 crates (2 directly)

MIT/Apache

45KB
835 lines

Pathio

Crate adding PathTree, a special type immitating UNIX file system for storing any generic type <T>.

=== Description ===

It is created by daisy chaining HashMaps. It splits data into directories, which can store <T> or nest subdirectories.

use pathio::prelude::*;

let mut tree: PathTree<String> = PathTree::new("FileSystem");

tree.create_directory("New_Folder").unwrap();
tree.create_directory("New_Folder/Strings").unwrap();
tree.create_directory("Cool_Folder").unwrap();

tree.insert_file("New_Folder/Strings/text.txt", "Hello World!".to_string()).unwrap();

println!("{}", tree.list());

Console output:

> FileSystem
  |-> Cool_Folder
  |-> New_Folder
  |    |-> Strings
  |    |    |-> text.txt

=== Contributing ===

Any contribution submitted by you will be dual licensed as mentioned below, without any additional terms or conditions.

=== Licensing ===

Released under both APACHE and MIT licenses, for the sake of compatibility with other projects. Pick one that suits you the most!

Dependencies

~1–34MB
~498K SLoC