Update main.py
Browse files
main.py
CHANGED
@@ -111,6 +111,7 @@ async def upload_file_on_server(file: UploadFile = File(...)):
|
|
111 |
# return temp_file_path
|
112 |
# Save the uploaded file to the temporary directory
|
113 |
file_path = os.path.join(data_dir, file.filename)
|
|
|
114 |
|
115 |
# Save the uploaded file to a temporary location
|
116 |
# with open(file_path, "wb") as buffer:
|
|
|
111 |
# return temp_file_path
|
112 |
# Save the uploaded file to the temporary directory
|
113 |
file_path = os.path.join(data_dir, file.filename)
|
114 |
+
print(file_path)
|
115 |
|
116 |
# Save the uploaded file to a temporary location
|
117 |
# with open(file_path, "wb") as buffer:
|