Fix after_request hook to delete files
This commit is contained in:
parent
df286c2034
commit
3692299f0d
1 changed files with 9 additions and 3 deletions
12
main.py
12
main.py
|
@ -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/')
|
||||
|
|
Loading…
Add table
Reference in a new issue