#directory #file #fs

touch

文件和目录操作的一个薄包装,旨在减少一些繁琐的工作。

1 个不稳定版本

使用旧的Rust 2015

0.0.1 2016年6月22日

#136 in #fs

Download history • Rust 包仓库 32/week @ 2024-03-11 • Rust 包仓库 34/week @ 2024-03-18 • Rust 包仓库 50/week @ 2024-03-25 • Rust 包仓库 64/week @ 2024-04-01 • Rust 包仓库 28/week @ 2024-04-08 • Rust 包仓库 23/week @ 2024-04-15 • Rust 包仓库 31/week @ 2024-04-22 • Rust 包仓库 23/week @ 2024-04-29 • Rust 包仓库 27/week @ 2024-05-06 • Rust 包仓库 39/week @ 2024-05-13 • Rust 包仓库 26/week @ 2024-05-20 • Rust 包仓库 27/week @ 2024-05-27 • Rust 包仓库 66/week @ 2024-06-03 • Rust 包仓库 24/week @ 2024-06-10 • Rust 包仓库 24/week @ 2024-06-17 • Rust 包仓库 43/week @ 2024-06-24 • Rust 包仓库

158 每月下载量
11 个crates中(5个直接) 使用

MIT 许可证

18KB
366 代码行

touch

版权所有 2016 Matthew Fornaciari mattforni@gmail.com 一个简单的文件和目录操作包装。

用法

这个crate位于crates.io,可以通过在项目中的Cargo.toml文件中添加args来使用。

[dependencies]
touch = "0"

并将此内容添加到crate根目录下

extern crate touch;

示例

extern crate touch;

use touch::exists;
use touch::dir;
use touch::file;

const DIR: &'static str = "/tmp/touch";
const FILE_NAME: &'static str = ".example";

fn main() {
    assert!(!exists(DIR));
    assert!(!exists(&path()));

    // Write
    let content = "Content";
    assert!(file::write(&path(), content, false).is_ok());

    // Read
    let mut output = file::read(&path());
    assert_eq!(content, output.unwrap());

    // Overwrite
    let new_content = "New Content";
    assert!(file::write(&path(), new_content, true).is_ok());
    output = file::read(&path());
    assert_eq!(new_content, output.unwrap());

    // Delete
    assert!(dir::delete(DIR).is_ok());
    assert!(!exists(&path()));
    assert!(!exists(DIR));
}

fn path() -> String {
    format!("{}/{}", DIR, FILE_NAME)
}

依赖项

~87KB