6 lines
144 B
Python
6 lines
144 B
Python
import os
|
|
|
|
|
|
class PathUtil:
|
|
def getAbsolutePathTo(notAbsolutPath:str) -> str:
|
|
return os.path.abspath("OLD_Server/" + notAbsolutPath) |