modification of code and loggger apply and changes of update from.

This commit is contained in:
2026-02-18 18:00:20 +05:30
parent 0ba78a0bd1
commit 63bcbeb9a2
12 changed files with 361 additions and 138 deletions

View File

@@ -7,7 +7,12 @@ class FileHandler:
@staticmethod
def CHeckExistingOrCreateNewUploadFolder():
#Wheteher path exists
# Whether path exists
os.makedirs(FileHandler.UPLOAD_FOLDER, exist_ok=True)
return
@staticmethod
def CheckExistingOrCreateNewLoggerFolder():
if not os.path.exists("logs"):
os.mkdir("logs")
return