GithubHelp home page GithubHelp logo

r-52 / tempdir Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rust-lang-deprecated/tempdir

0.0 1.0 0.0 575 KB

Temporary directory management for Rust

Home Page: http://doc.rust-lang.org/tempdir

License: Apache License 2.0

Rust 100.00%

tempdir's Introduction

tempdir

A Rust library for creating a temporary directory and deleting its entire contents when the directory is dropped.

Build Status Build status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
tempdir = "0.3"

and this to your crate root:

extern crate tempdir;

Example

This sample method does the following:

  1. Create a temporary directory in the default location with the given prefix.
  2. Determine a file path in the directory and print it out.
  3. Create a file inside the temp folder.
  4. Write to the file and sync it to disk.
  5. Close the directory, deleting the contents in the process.
fn write_temp_folder_with_files() -> Result<(), io::Error> {
    if let Ok(dir) = TempDir::new("my_directory_prefix") {
        let file_path = dir.path().join("foo.txt");
        println!("{:?}", file_path);

        let mut f = File::create(file_path)?;
        f.write_all(b"Hello, world!")?;
        f.sync_all()?;
        dir.close()?;
    }
    Ok(())
}

Note: Closing the directory is actually optional, as it would be done on drop. The benefit of closing here is that it allows possible errors to be handled.

tempdir's People

Contributors

alexcrichton avatar brson avatar chills42 avatar opilar avatar andersk avatar abonander avatar cldfire avatar dtolnay avatar shepmaster avatar r-52 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.