diff --git a/main.py b/main.py index 0c251e5..7fddb9c 100644 --- a/main.py +++ b/main.py @@ -26,12 +26,18 @@ def do_upload(): @route('/download/') 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/') def send_static(filename): return static_file(filename, root='static/')