file mod
This commit is contained in:
parent
7e604c2feb
commit
104401dab9
@ -78,12 +78,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}", 'wb+') as f:
|
with open(f"{dir_file}/{filename}", 'r + b') as f:
|
||||||
|
f.seek(0)
|
||||||
f.write(contents)
|
f.write(contents)
|
||||||
with open(f"{dir_last}/{filename}", 'wb+') as f:
|
with open(f"{dir_last}/{filename}", 'r + b') as f:
|
||||||
|
f.seek(0)
|
||||||
f.write(contents)
|
f.write(contents)
|
||||||
if stable:
|
if stable:
|
||||||
with open(f"{dir_stable}/{filename}", 'wb+') as f:
|
with open(f"{dir_stable}/{filename}", 'r + b') as f:
|
||||||
|
f.seek(0)
|
||||||
f.write(contents)
|
f.write(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)}
|
||||||
|
Loading…
Reference in New Issue
Block a user