tempfile

Temporary file library for rust

Latest version: 3.27.0 registry icon
Maintenance score
100
Safety score
100
Popularity score
87
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
3.27.0 0 0 0 0 0
3.26.0 0 0 0 0 0
3.25.0 0 0 0 0 0
3.24.0 0 0 0 0 0
3.23.0 0 0 0 0 0
3.22.0 0 0 0 0 0
3.21.0 0 0 0 0 0
3.20.0 0 0 0 0 0
3.19.1 0 0 0 0 0
3.19.0 0 0 0 0 0
3.18.0 0 0 0 0 0
3.17.1 0 0 0 0 0
3.17.0 0 0 0 0 0
3.16.0 0 0 0 0 0
3.15.0 0 0 0 0 0
3.14.0 0 0 0 0 0
3.13.0 0 0 0 0 0
3.12.0 0 0 0 0 0
3.11.0 0 0 0 0 0
3.10.1 0 0 0 0 0
3.10.0 0 0 0 0 0
3.9.0 0 0 0 0 0
3.8.1 0 0 0 0 0
3.8.0 0 0 0 0 0
3.7.1 0 0 0 0 0
3.7.0 0 0 0 0 0
3.6.0 0 0 0 0 0
3.5.0 0 0 0 0 0
3.4.0 0 0 0 0 0
3.3.0 0 0 0 0 0
3.2.0 0 0 0 0 0
3.1.0 0 0 0 0 0
3.0.9 0 0 0 0 0
3.0.8 0 0 0 0 0
3.0.7 0 0 0 0 0
3.0.6 0 0 0 0 0
3.0.5 0 0 0 0 0
3.0.4 0 0 0 0 0
3.0.3 0 0 0 0 0
3.0.2 0 0 0 0 0
3.0.1 0 0 0 0 0
3.0.0 0 0 0 0 0
2.2.0 0 0 0 0 0
2.1.6 0 0 0 0 0
2.1.5 0 0 0 0 0
2.1.4 0 0 0 0 0
2.1.3 0 0 0 0 0
2.1.2 0 0 0 0 0
2.1.1 0 0 0 0 0
2.1.0 0 0 0 0 0
2.0.1 0 0 0 0 0
2.0.0 0 0 0 0 0
1.1.3 0 0 0 0 0
1.1.2 0 0 0 0 0
1.1.1 0 0 0 0 0
1.1.0 0 0 0 0 0
1.0.0 0 0 0 0 0
0.5.1 0 0 0 0 0
0.5.0 0 0 0 0 0
0.4.0 0 0 0 0 0
0.3.0 0 0 0 0 0
0.2.0 0 0 0 0 0
0.1.0 0 0 0 0 0
0.0.3 0 0 0 0 0
0.0.2 0 0 0 0 0
0.0.1 0 0 0 0 0

Stability
Latest release:

3.27.0 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

MIT   -   MIT License

Not a wildcard

Not proprietary

OSI Compliant


Apache-2.0   -   Apache License 2.0

Not a wildcard

Not proprietary

OSI Compliant



tempfile

Crate Build Status

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).

Documentation

Usage

Minimum required Rust version: 1.63.0

Add this to your Cargo.toml:

[dependencies]
tempfile = "3"

Supported Platforms

This crate supports all major operating systems:

  • Linux
  • Android
  • MacOS
  • Windows
  • FreeBSD (likely other BSDs but we don't have CI for them)
  • RedoxOS
  • Wasm (build and link only, Wasm doesn't have a filesystem)
  • WASI P1 & P2.

However:

  • Android, RedoxOS, Wasm, and WASI targets all require the latest stable rust compiler.
  • WASI P1/P2 does not define a default temporary directory. You'll need to explicitly call tempfile::env::override_temp_dir with a valid directory or temporary file creation will panic on this platform.
  • WASI P1/P2 does not have file permissions.
  • You may need to override the temporary directory in Android as well to point at your application's per-app cache directory.

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);
}