Deleting saved capture folder
This commit is contained in:
		@@ -50,11 +50,13 @@ class Save():
 | 
				
			|||||||
                if method == "usb":
 | 
					                if method == "usb":
 | 
				
			||||||
                    cd = datetime.now().strftime("%d%m%Y-%H%M")
 | 
					                    cd = datetime.now().strftime("%d%m%Y-%H%M")
 | 
				
			||||||
                    if shutil.make_archive("{}/TinyCheck_{}".format(self.mount_point, cd), "zip", "/tmp/{}/".format(token)):
 | 
					                    if shutil.make_archive("{}/TinyCheck_{}".format(self.mount_point, cd), "zip", "/tmp/{}/".format(token)):
 | 
				
			||||||
 | 
					                        shutil.rmtree("/tmp/{}/".format(token))
 | 
				
			||||||
                        return jsonify({"status": True,
 | 
					                        return jsonify({"status": True,
 | 
				
			||||||
                                        "message": "Capture saved on the USB key"})
 | 
					                                        "message": "Capture saved on the USB key"})
 | 
				
			||||||
                elif method == "url":
 | 
					                elif method == "url":
 | 
				
			||||||
                    cd = datetime.now().strftime("%d%m%Y-%H%M")
 | 
					                    cd = datetime.now().strftime("%d%m%Y-%H%M")
 | 
				
			||||||
                    if shutil.make_archive("/tmp/TinyCheck_{}".format(cd), "zip", "/tmp/{}/".format(token)):
 | 
					                    if shutil.make_archive("/tmp/TinyCheck_{}".format(cd), "zip", "/tmp/{}/".format(token)):
 | 
				
			||||||
 | 
					                        shutil.rmtree("/tmp/{}/".format(token))
 | 
				
			||||||
                        with open("/tmp/TinyCheck_{}.zip".format(cd), "rb") as f:
 | 
					                        with open("/tmp/TinyCheck_{}.zip".format(cd), "rb") as f:
 | 
				
			||||||
                            return send_file(
 | 
					                            return send_file(
 | 
				
			||||||
                                io.BytesIO(f.read()),
 | 
					                                io.BytesIO(f.read()),
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user