• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Jan-2022-

src/H20-Jan-2022-2,414867

tests/H20-Jan-2022-918739

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D20-Jan-20221.4 KiB4036

LICENSE-APACHEH A D20-Jan-202210.6 KiB202169

LICENSE-MITH A D20-Jan-20221 KiB2622

NEWSH A D20-Jan-20224 KiB192124

README.mdH A D20-Jan-20221.3 KiB4735

README.md

1tempfile
2========
3
4[![Crate](https://img.shields.io/crates/v/tempfile.svg)](https://crates.io/crates/tempfile)
5[![Build Status](https://travis-ci.org/Stebalien/tempfile.svg?branch=master)](https://travis-ci.org/Stebalien/tempfile)
6[![Build status](https://ci.appveyor.com/api/projects/status/5q00b8rvvg46i5tf/branch/master?svg=true)](https://ci.appveyor.com/project/Stebalien/tempfile/branch/master)
7
8A secure, cross-platform, temporary file library for Rust. In addition to creating
9temporary files, this library also allows users to securely open multiple
10independent references to the same temporary file (useful for consumer/producer
11patterns and surprisingly difficult to implement securely).
12
13[Documentation](https://docs.rs/tempfile/)
14
15Usage
16-----
17
18Minimum required Rust version: 1.40.0
19
20Add this to your `Cargo.toml`:
21```toml
22[dependencies]
23tempfile = "3"
24```
25
26Example
27-------
28
29```rust
30use std::fs::File;
31use std::io::{Write, Read, Seek, SeekFrom};
32
33fn main() {
34    // Write
35    let mut tmpfile: File = tempfile::tempfile().unwrap();
36    write!(tmpfile, "Hello World!").unwrap();
37
38    // Seek to start
39    tmpfile.seek(SeekFrom::Start(0)).unwrap();
40
41    // Read
42    let mut buf = String::new();
43    tmpfile.read_to_string(&mut buf).unwrap();
44    assert_eq!("Hello World!", buf);
45}
46```
47