diff --git a/davtelepot/utilities.py b/davtelepot/utilities.py index 9d5e3c8..ad5773e 100644 --- a/davtelepot/utilities.py +++ b/davtelepot/utilities.py @@ -1738,3 +1738,7 @@ async def aio_subprocess_shell(command: str) -> Tuple[str, str]: ) ) return stdout, stderr + + +def join_path(*args): + return os.path.abspath(os.path.join(*args))