#directory #cd #pathbuf #fs

cd-manager

A small crate for ensuring directories are popped to restore a base directory on Drop

2 releases

Uses old Rust 2015

0.1.1 Sep 1, 2018
0.1.0 Sep 1, 2018

#1010 in Filesystem

MIT AND Apache-2.0

11KB
102 lines

cd-manager Build Status

GitHub issues Latest Version

This is a simple crate designed to prevent you from forgetting to pop off of a PathBuf upon exiting scope (i.e. at the end of a loop, when returning from a function, etc). This makes it easy to have multiple return points, as your context will automatically be restored upon Drop.

This crate is not perfectly safe at the moment (it is "safe" in the Rust sense, but you can trigger undesired behavior when used improperly), but the basic functionality works.

For more documentation, see the main feature of this package, CdManager.

To add this to your project, use

[dependencies]
cd-manager = "0.1"

Dependencies

~64KB