diff --git a/source/Manager.py b/source/Manager.py index 0fcc5f0..615605f 100644 --- a/source/Manager.py +++ b/source/Manager.py @@ -1,4 +1,5 @@ from pathlib import Path +from shutil import move __all__ = ['Manager'] @@ -11,3 +12,7 @@ class Manager: @staticmethod def delete(path: Path): path.unlink() + + @staticmethod + def remove(temp: Path, path: Path): + move(temp.resolve(), path.resolve())