chwd

Crates.iochwd
lib.rschwd
version0.2.0
sourcesrc
created_at2020-07-07 18:34:09.991706
updated_at2020-07-07 20:45:00.074713
descriptionTemporarily change current working directory, switching back when finished.
homepage
repositoryhttps://github.com/GrumpyMetalGuy/chwd
max_upload_size
id262362
size20,587
(GrumpyMetalGuy)

documentation

README

chwd Documentation

Rust library to temporarily change your cwd, then switch it back when you're done.

Usage

Call ChangeWorkingDirectory's change function to change the current working directory, assigning the result to a local temporary variable. Once this variable goes out of scope, the current working directory will change back to the directory that was in use at the time of object creation.

fn main()
{
    {
        let _dir_change = ChangeWorkingDirectory::change(&env::temp_dir())?;
        // Do something in the temp dir
    }

    // _dir_change has gone out of scope, you will be back where you started.
}

Contributions

Although this is a fairly simple library, if you can think of anything that could be done to improve it, please open an issue or submit a PR!

License

This project is licensed under

Commit count: 16

cargo fmt