how to use system() to cal external Winzip to matlab?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have 250000 zip files.i need to unzip ..in matlab it takes more time to unzip. how to cal external program using system()??
0 Commenti
Risposta accettata
Friedrich
il 29 Ago 2013
Modificato: Friedrich
il 29 Ago 2013
Hi,
folder = pwd;
files = dir(fullfile(folder,'*.zip'));
for i=1:numel(files)
system(sprintf('"C:\\Program Files (x86)\\WinZip\\WINZIP32.EXE" -min -e -o "%s"',fullfile(folder,files(i).name)))
end
Maybe you need some other arguments etc. But you can figure that out by searching the web for the arguments winzip supports.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!