ImpPath
Simple C++ library for path manipulation
Very basic path manipulation library. Aims to be simple, intuitive and predictable (not universal).
Works with std::string and std::wstring.
Configurable to support both POSIX and Windows paths (drive letters only - no schemas, network paths etc), as well as some custom formats (with limitations for simplicity).
All configurations understand ".." (parent directory) and "." (current directory) and handle them during normalization. However, this library never tries to access any real...