#read-write #directory #os #awesome #bundle #time

etc

现在是时候为您的出色项目捆绑 etc 了!

显示软件包…

22 个版本

0.1.20 2024 年 5 月 2 日
0.1.19 2024 年 1 月 22 日
0.1.18 2023 年 12 月 29 日
0.1.16 2020 年 12 月 9 日
0.1.2 2020 年 3 月 22 日

#36#awesome

Download history 656/week @ 2024-04-16 704/week @ 2024-04-23 792/week @ 2024-04-30 712/week @ 2024-05-07 836/week @ 2024-05-14 642/week @ 2024-05-21 808/week @ 2024-05-28 740/week @ 2024-06-04 859/week @ 2024-06-11 748/week @ 2024-06-18 479/week @ 2024-06-25 764/week @ 2024-07-02 810/week @ 2024-07-09 974/week @ 2024-07-16 878/week @ 2024-07-23 946/week @ 2024-07-30

3,778 每月下载次数
用于 20 个软件包中(15 个直接使用)

MIT 许可证

21KB
431

etc

crate doc downloads LICENSE

现在是时候为您的出色项目捆绑 etc 了!

use etc::{Etc, FileSystem, Read, Write};

fn main() {
    // config root path
    let mut dir = std::env::temp_dir();
    dir.push(".etc.io");

    // generate `/.etc.io` dir
    let etc = Etc::new(&dir).unwrap();
    let hello = etc.open("hello.md").unwrap();

    // input and output
    assert!(hello.write(b"hello, world!\n").is_ok());
    assert_eq!(hello.read().unwrap(), b"hello, world!\n");

    // remove hello.md
    assert!(etc.rm("hello.md").is_ok());

    // hello.md has been removed
    let mut hello_md = dir.clone();
    hello_md.push("hello.md");
    assert!(!hello_md.exists());

    // remove all
    assert!(etc.drain().is_ok());
    assert!(!dir.exists());
}

将文件的 内容 加载到 一个结构体中!

use etc::{Etc, Tree, FileSystem, Write};

fn main() {
    // config root path
    let mut dir = env::temp_dir();
    dir.push(".etc.load");

    // write files
    let etc = Etc::new(&dir).unwrap();
    let amd = etc.open("mds/a.md").unwrap();
    let bmd = etc.open("mds/b.md").unwrap();
    assert!(amd.write(b"# hello").is_ok());
    assert!(bmd.write(b"# world").is_ok());

    // batch and load
    let mut tree = Tree::batch(&etc).unwrap();
    assert!(tree.load().is_ok());
    assert_eq!(
        tree,
        Tree {
            path: PathBuf::from(&dir),
            content: None,
            children: Some(vec![Tree {
                path: PathBuf::from_iter(&[&dir, &PathBuf::from("mds")]),
                content: None,
                children: Some(vec![
                    Tree {
                        path: PathBuf::from_iter(&[&dir, &PathBuf::from("mds/a.md")]),
                        content: Some(b"# hello".to_vec()),
                        children: None,
                    },
                    Tree {
                        path: PathBuf::from_iter(&[&dir, &PathBuf::from("mds/b.md")]),
                        content: Some(b"# world".to_vec()),
                        children: None,
                    }
                ])
            }]),
        }
    );

    // remove all
    assert!(etc.drain().is_ok());
    assert!(!dir.exists());
}

使用 etc 的项目

  • elvis - Webassembly UI 框架
  • sup - Substrate 包管理器

许可证

MIT

依赖项

~170KB