Mdified comparison route and roundoff values checking also.
This commit is contained in:
14
AppCode/FileHandler.py
Normal file
14
AppCode/FileHandler.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import os
|
||||
|
||||
|
||||
class FileHandler:
|
||||
|
||||
UPLOAD_FOLDER = 'uploads'
|
||||
RESULT_FILE = 'unmatched_result.xlsx'
|
||||
|
||||
@staticmethod
|
||||
def check_or_create_folder_exists():
|
||||
|
||||
if not os.path.exists(FileHandler.UPLOAD_FOLDER):
|
||||
os.makedirs(FileHandler.UPLOAD_FOLDER)
|
||||
|
||||
Reference in New Issue
Block a user