Fix after_request hook to delete files

This commit is contained in:
fleaz 2024-10-16 21:46:03 +02:00
parent df286c2034
commit 3692299f0d

12
main.py
View file

@ -26,12 +26,18 @@ def do_upload():
@route('/download/<id>')
def download(id):
@hook('after_request')
def delFiles():
remove(f"./downloads/{id}.pdf")
filename = f"{id}.pdf"
return static_file(filename, root='downloads', download=filename)
@hook('after_request')
def delFiles():
if request.path.startswith("/download/"):
id = request.path.split("/")[2]
try:
remove(f"./downloads/{id}.pdf")
except FileNotFoundError:
return
@route('/static/<filename:path>')
def send_static(filename):
return static_file(filename, root='static/')