how to use system() to cal external Winzip to matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
채택된 답변
Friedrich
2013년 8월 29일
편집: Friedrich
2013년 8월 29일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Web Services에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!