1 个不稳定版本
使用旧的Rust 2015
0.0.1 | 2016年6月22日 |
---|
#136 in #fs
158 每月下载量
在 11 个crates中(5个直接) 使用
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