pathbufools

Crates.iopathbufools
lib.rspathbufools
version0.1.1
sourcesrc
created_at2019-04-20 16:10:06.527616
updated_at2019-04-20 16:10:06.527616
descriptionAdditional helper methods for PathBuf
homepagehttps://github.com/rabite0/pathbuftools
repositoryhttps://github.com/rabite0/pathbuftools
max_upload_size
id129109
size4,275
(rabite0)

documentation

README

pathtbuftools

pathbuftools is a small library that adds some helper methods which are useful when working with PathBufs.

This mostly usefuly when you're doing low-level stuff with files. I factored this library out of hunter, so for the most part it contains stuff I needed there, plus a bit more I stopped using.

Available methods and their singatures are:

fn short_path(&self) -> PathBuf;
fn short_string(&self) -> String;
fn name_starts_with(&self, pat: &str) -> bool;
fn quoted_file_name(&self) -> Option<OsString>;
fn quoted_path(&self) -> OsString;

NOTE: short_path() removes the $HOME component of a Path and replaces it with ~, so "/home/foo/bar" becomes "~/bar".

Commit count: 7

cargo fmt