File size: 173 Bytes
299e542
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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())