Unzip will not work on some archives
30 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Matthew Rademacher
el 11 de Abr. de 2023
Editada: Matthew Rademacher
el 26 de Abr. de 2023
When I run the unzip function, it will fail on certain archives. What really confuses me is that I can extract an archive's contents manually via the gui (right click an archive -> unzip).
Error message is simply "Invalid ZIP file:
C:\users\Desktop\myzipfile.zip"
The zip file is not invalid, and it is not corrupted
Respuesta aceptada
chrisw23
el 12 de Abr. de 2023
Editada: Walter Roberson
el 14 de Abr. de 2023
try to use .net Functionality (Windows OS assumed)
asm = NET.addAssembly("System.IO.Compression");
import System.IO.Compression.ZipFileExtensions.*
ZipFileExtensions.ExtractToFile(...
ZipFileExtensions.ExtractToDirectory(...
% search for system.io.compression.zipfileextensions.extracttodirectory to get the argument list
11 comentarios
Matthew Rademacher
el 26 de Abr. de 2023
Editada: Matthew Rademacher
el 26 de Abr. de 2023
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!