jrop / rs-mktemp

mktemp for Rust - https://samgiles.github.io/rs-mktemp/mktemp/struct.Temp.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mktemp

Documentation

This module provides a simple way of creating temporary files and directories where their lifetime is defined by the scope they exist in.

Once the variable goes out of scope, the underlying file system resource is removed.

See documentation for full API, and other use cases.

Example

use mktemp::Temp;

{
  let temp_file = Temp::new_file().unwrap();
  let file = try!(fs::File::open(temp_file));
}
// temp_file is cleaned from the fs here

Contributors

Special thanks to our contributors! Contributors

License

MPL v2

About

mktemp for Rust - https://samgiles.github.io/rs-mktemp/mktemp/struct.Temp.html

License:Mozilla Public License 2.0


Languages

Language:Rust 100.0%