Skip to content

Instantly share code, notes, and snippets.

@jfftck
jfftck / path.py
Last active March 17, 2017 00:48
This is a convinience object to make path/file opperations easier.
class Path(object):
def __init__(self, path=None):
self.__path = []
self.__drive = ''
self.__file = None
self.path(path)
def __add__(self, other):
if isinstance(other, Path):