fix save file

This commit is contained in:
Kavalar 2023-10-30 02:29:47 +03:00
parent 7e8afb21ec
commit 7be0209169

View File

@ -1,3 +1,4 @@
import pathlib
from typing import Union, Annotated from typing import Union, Annotated
import uvicorn import uvicorn
from routes.user_routes import user_route from routes.user_routes import user_route
@ -78,12 +79,15 @@ async def create_upload_file(file: UploadFile | None, package: Annotated[str, Fo
os.makedirs(dir_last) os.makedirs(dir_last)
if not os.path.exists(dir_stable): if not os.path.exists(dir_stable):
os.makedirs(dir_stable) os.makedirs(dir_stable)
with open(f"{dir_file}/{filename}", 'w') as f: os.remove(f"{dir_file}/{filename}")
with open(f"{dir_file}/{filename}", 'a') as f:
f.write(str(contents)) f.write(str(contents))
with open(f"{dir_last}/{filename}", 'w') as f: os.remove(f"{dir_last}/{filename}")
with open(f"{dir_last}/{filename}", 'a') as f:
f.write(str(contents)) f.write(str(contents))
if stable: if stable:
with open(f"{dir_stable}/{filename}", 'w') as f: os.remove(f"{dir_stable}/{filename}")
with open(f"{dir_stable}/{filename}", 'a') as f:
f.write(str(contents)) f.write(str(contents))
except Exception as err: except Exception as err:
return {"message": "There was an error uploading the file, error {err}".format(err=err)} return {"message": "There was an error uploading the file, error {err}".format(err=err)}