You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| .github/workflows | 2 years ago | |
| src | 2 years ago | |
| tests | 2 years ago | |
| .cargo_vcs_info.json | 2 years ago | |
| .gitignore | 2 years ago | |
| Android.bp | 2 years ago | |
| Cargo.toml | 2 years ago | |
| Cargo.toml.orig | 2 years ago | |
| LICENSE | 2 years ago | |
| LICENSE-APACHE | 2 years ago | |
| LICENSE-MIT | 2 years ago | |
| METADATA | 2 years ago | |
| MODULE_LICENSE_APACHE2 | 2 years ago | |
| NEWS | 2 years ago | |
| OWNERS | 2 years ago | |
| README.md | 2 years ago | |
| TEST_MAPPING | 2 years ago | |
| cargo2android.json | 2 years ago | |
README.md
tempfile
A secure, cross-platform, temporary file library for Rust. In addition to creating temporary files, this library also allows users to securely open multiple independent references to the same temporary file (useful for consumer/producer patterns and surprisingly difficult to implement securely).
Usage
Minimum required Rust version: 1.40.0
Add this to your Cargo.toml:
[dependencies]
tempfile = "3"
Example
use std::fs::File;
use std::io::{Write, Read, Seek, SeekFrom};
fn main() {
// Write
let mut tmpfile: File = tempfile::tempfile().unwrap();
write!(tmpfile, "Hello World!").unwrap();
// Seek to start
tmpfile.seek(SeekFrom::Start(0)).unwrap();
// Read
let mut buf = String::new();
tmpfile.read_to_string(&mut buf).unwrap();
assert_eq!("Hello World!", buf);
}