Crate mkstemp [] [src]

Safe wrapper over mkstemp function from libc

Usage example:

use std::io::Write;
extern crate mkstemp;
pub fn main() {
    // delete automatically when it goes out of scope
    let mut temp_file = mkstemp::TempFile::new("/tmp/testXXXXXX", true).unwrap();
    temp_file.write("test content".as_bytes()).unwrap();
}

Structs

TempFile

Temporary file