3
I have a zip that, inside it there are several files to be uncompressed. So far so good, I’m using the following method to twelve the same:?
with closing(z), zipfile.ZipFile(io.BytesIO(z.content)) as myzip:
myzip.extractall(local_path)
However I came across the situation that inside the zip there is a file with Unicode can example:
- myfile.wav
- myfile2.wav
- my§ile.wav
How can I treat these files, to unzip them properly?
Not properly unpacking? What’s going on?
– Math
it cannot unzip, presents a Unicode error
– Guilherme Lima
Can post complete error, please?
– Leonardo Pessoa