Rust File Access Wrapper Lib

A fileaccess wrapper-lib containing the AsFile trait to make performing certain file manipulations more convenient. ```rust let text = "strpath".asfile().read_string()?; println!("{text}");

"file.1".asfile().copyto(&"file.2")?; "file.2".asfile().renameto(&"file.3")?; ```

Exposed Actions

Usages

There are 3 ways to use this library: - By calling methods directly: let result = file_access::METHOD_NAME(&file_path, &..)? - By using a FilePath handle: let file = FilePath::access(&file_path); let result = file.METHOD_NAME(&..)? - By using the AsFile trait: let file = "string_path".as_file(); let result = file.METHOD_NAME(&..)?

where file_path can be a borrowed String, &str, or file_access::FilePath.

Examples

file.writelines(&lines)?; file.appendlines(&lines)?; file.copyto(&anotherpath)?; ```

// rename a file: "anotherpath".asfile().renameto(&"anewfilepath")?; ```