fsio

crates.io Build Status Build status codecov
license Libraries.io for GitHub Documentation downloads
Built with cargo-make

Environment variables utility functions.

Overview

File System and Path utility functions.

Usage

There are multiple main modules for fsio:

Examples

```rust extern crate fsio;

use crate::fsio::{directory, file, path}; use std::path::Path; use std::str;

fn main() { // file operations let mut result = file::ensureexists("./target/test/example/filetest/dir1/dir2/file.txt"); assert!(result.is_ok());

// create/append and read text files
let mut file_path = "./target/__test/example/file_test/append_text_file/file.txt";
result = file::write_text_file(file_path, "some content");
assert!(result.is_ok());
result = file::append_text_file(file_path, "\nmore content");
assert!(result.is_ok());
let text = file::read_text_file(file_path).unwrap();
assert_eq!(text, "some content\nmore content");

// create/append and read binary files
file_path = "./target/__test/example/file_test/append_and_read_file_test/file.txt";
result = file::write_file(file_path, "some content".as_bytes());
assert!(result.is_ok());
result = file::append_file(file_path, "\nmore content".as_bytes());
assert!(result.is_ok());
let data = file::read_file(file_path).unwrap();
assert_eq!(str::from_utf8(&data).unwrap(), "some content\nmore content");

// delete file
result = file::delete(file_path);
assert!(result.is_ok());

// directory operations
result = directory::create("./target/__test/example/directory_test/dir1/dir2");
assert!(result.is_ok());

result = directory::create_parent("./target/__test/example/directory_test/dir1/files/file.txt");
assert!(result.is_ok());

// delete directory
result = directory::delete("./target/__test/example/directory_test");
assert!(result.is_ok());

// basename and parent directory examples
let basename = path::get_basename("./src/path/mod.rs");
assert_eq!(basename.unwrap(), "mod.rs");

let dirname = path::get_parent_directory("./src/path/mod.rs");
assert_eq!(dirname.unwrap(), "./src/path");

// canonicalize examples
let path_obj = Path::new("./src/path/mod.rs");

let path1 = path::canonicalize_as_string(&path_obj);
let path2 = path::canonicalize_or("./src/path/mod.rs", "/src/path/mod.rs");

assert_eq!(path1.unwrap(), path2);

} ```

Installation

In order to use this library, just add it as a dependency:

ini [dependencies] fsio = "*"

If you need access to temporary file paths, enable the temp-path feature as follows:

ini [dependencies] fsio = { version = "*", features = ["temp-path"] }

API Documentation

See full docs at: API Docs

Contributing

See contributing guide

Release History

See Changelog

License

Developed by Sagie Gur-Ari and licensed under the Apache 2 open source license.