aRockyBot / goodpath.py
aashraychegu's picture
Upload 9 files
299e542
raw
history blame contribute delete
173 Bytes
import pathlib as pl
def root_path_as_plPath():
return (pl.Path(__file__).parent.resolve())
def root_path_as_str():
return str(pl.Path(__file__).parent.resolve())