Temporary file library for rust
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-06 15:20:19 +02:00
src chore: sync dependencies (monorepo) 2026-04-03 11:08:51 +02:00
tests test: re-enable test_make_uds_conflict on redox (#400) 2026-03-13 18:11:08 +00:00
.gitignore Works on linux. 2015-04-11 21:54:16 -04:00
Cargo.toml chore: sync dependencies (monorepo) 2026-04-06 15:20:19 +02:00
deny.toml ci(cargo-deny): remove windows-sys exception (#343) 2025-03-14 00:51:37 +00:00
LICENSE-APACHE Add license and readme. 2015-04-14 00:36:11 -04:00
LICENSE-MIT Add license and readme. 2015-04-14 00:36:11 -04:00
README.md doc(README): document supported platforms 2026-02-23 09:29:31 -08:00

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