FitTrackee/fittrackee/activities/utils_files.py
2021-01-02 19:28:07 +01:00

8 lines
174 B
Python

import os
from flask import current_app
def get_absolute_file_path(relative_path: str) -> str:
return os.path.join(current_app.config['UPLOAD_FOLDER'], relative_path)