Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Stebalien/tempfile
Temporary file library for rust
https://github.com/Stebalien/tempfile
filesystem-library library rust tempfile testing
Last synced: 7 days ago
JSON representation
Temporary file library for rust
- Host: GitHub
- URL: https://github.com/Stebalien/tempfile
- Owner: Stebalien
- License: apache-2.0
- Created: 2015-04-12T20:21:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-23T22:01:50.000Z (11 days ago)
- Last Synced: 2024-10-25T03:13:04.407Z (10 days ago)
- Topics: filesystem-library, library, rust, tempfile, testing
- Language: Rust
- Homepage: http://stebalien.com/projects/tempfile-rs
- Size: 433 KB
- Stars: 1,165
- Watchers: 11
- Forks: 115
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
- awesome-rust-cn - Stebalien/tempfile - ci.org/Stebalien/tempfile.svg?branch=master">](https://travis-ci.org/Stebalien/tempfile) (Libraries / Filesystem)
- awesome-rust - Stebalien/tempfile - ci.org/Stebalien/tempfile.svg?branch=master">](https://travis-ci.org/Stebalien/tempfile) (Libraries / Filesystem)
- awesome-rust - Stebalien/tempfile
- awesome-rust-cn - Stebalien/tempfile
- awesome-rust-zh - Stebalien/tempfile - 临时文件库[<img src="https://api.travis-ci.org/Stebalien/tempfile.svg?branch=master">](https://travis-ci.org/Stebalien/tempfile) (库 / 文件系统)
- awesome-rust - Stebalien/tempfile - temporary file library (Libraries / Filesystem)
- awesome-rust - Stebalien/tempfile - ci.org/Stebalien/tempfile.svg?branch=master">](https://travis-ci.org/Stebalien/tempfile) (库 Libraries / 文件系统 Filesystem)
- fucking-awesome-rust - Stebalien/tempfile - temporary file library (Libraries / Filesystem)
- fucking-awesome-rust - Stebalien/tempfile - temporary file library (Libraries / Filesystem)
README
tempfile
========[![Crate](https://img.shields.io/crates/v/tempfile.svg)](https://crates.io/crates/tempfile)
[![Build Status](https://github.com/Stebalien/tempfile/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/Stebalien/tempfile/actions/workflows/ci.yml?query=branch%3Amaster)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](https://docs.rs/tempfile/)
Usage
-----Minimum required Rust version: 1.63.0
Add this to your `Cargo.toml`:
```toml
[dependencies]
tempfile = "3"
```Example
-------```rust
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);
}
```