A simple library to read/write files faster in Rust.
```rust match fstream::writetext("testfile.txt", "Hello world!", true) {
Some(b) => println!("Number of bytes written to the file: {}", b),
None => println!("Couldn't open or write to the file!"),
} ```
or just:
rust
fstream::write_text("test_file.txt", "Hello world!", true).unwrap();
```rust match fstream::readtext("testfile.txt") {
Some(s) => println!("File content: {}", s),
None => println!("Couldn't open or read the file"),
} ```
or just:
rust
fstream::read_text("test_file.txt").unwrap();
|Function|Description| |--------|-----------| |read|Reads file content into a buffer| |readtext|Reads text from a file as a string| |readlines|Reads text from a file and stores lines into a vector of strings| |readwords|Reads text from a file and stores words into a vector of strings| |readdelim|Reads text from a file, splits it using a user specified delimiter and stores the tokens into a vector of strings|
|Function|Description| |--------|-----------| |write|Writes a buffer to a file| |writetext|Writes a string to a file| |writelines|Writes a vector of strings to a file as lines| |writefmt|Writes formatted text to a file| |writenewline|Writes a new line to a file|
Add this line to your Cargo.toml:
toml
[dependencies]
fstream = "0.1.0"
and then add this line to your main.rs:
rust
extern crate fstream