Files
shadowcrest/Classes/System/Utils/Path.py

6 lines
140 B
Python

import os
class PathUtil:
def getAbsolutePathTo(notAbsolutPath:str) -> str:
return os.path.abspath("Client/" + notAbsolutPath)