commondir 1.0.0

Find the common root directory of a set of paths
Documentation
  • Coverage
  • 63.64%
    7 out of 11 items documented0 out of 7 items with examples
  • Size
  • Source code size: 29.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.65 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • foresterre

CommonDir

Find a common root subdirectory for a set of input paths. Optionally, concatenate the paths which share this common root subdirectory to a new to a new common root.

For example, given:

/my/my/common/path/a.png
/my/my/common/path/b.png
/my/my/uncommon/path/c.png

It finds the common root: /my/my, and the unrooted branches:

common/path/a.png
common/path/b.png
uncommon/path/c.png

If you decide to concatenate a new root directory /new, it will output:

/new/common/path/a.png
/new/common/path/b.png
/new/uncommon/path/c.png

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.