add: album

This commit is contained in:
2025-04-23 22:11:44 +02:00
parent b4a78a9e7d
commit 3f30154b36
4 changed files with 15 additions and 4 deletions

View File

@ -31,6 +31,9 @@ class Path():
return None
return self._name
def touch(self) -> None:
open(self.get_absolute_path(), "w+").close()
def create(self) -> None:
os.makedirs(self.get_absolute_path())