So while streaming, you try to open a file but an exception (OSError or IOError) is raised. You want to skip that specific file and stream all other valid elements.
I did not find any way to achieve this behaviour. Maybe some option like skip_on_error could help.
This is the case scenario:
zipsrteam.ZipFile
ZipFile.write
functionZipFile.__iter__
So while streaming, you try to open a file but an exception (
OSError
orIOError
) is raised. You want to skip that specific file and stream all other valid elements.I did not find any way to achieve this behaviour. Maybe some option like
skip_on_error
could help.