Python cant handle exceptions from zipfile.BadZipFile
问题 Need to handle if a zip file is corrupt, so it just pass this file and can go on to the next. In the code example underneath Im trying to catch the exception, so I can pass it. But my script is failing when the zipfile is corrupt*, and give me the "normal" traceback errors* istead of printing "my error", but is running ok if the zipfile is ok. This i a minimalistic example of the code I'm dealing with. path = "path to zipfile" from zipfile import ZipFile with ZipFile(path) as zf: try: print