Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 541 Bytes

File metadata and controls

11 lines (11 loc) · 541 Bytes

Path

A C++ implementation of Python's Pathlib.

Table Of Contents

  1. Usage
    1. Construction
    2. Modification

Usage

Construction

To construct a new path object, there are two constructor overloads you can use: A default constructor, and a constructor that takes a raw path as a parametre.

Modification

To modify a path, the / operator overload is defined in two ways. One that takes another path, and one that takes a string.