필터 지우기
필터 지우기

how to access a particular format file from a zip file with or without zipping in matlab?

조회 수: 7 (최근 30일)
i have 100 zip files..in each i have many files different extension .but i need to take all the .txt files alone from each zip files and want to store in a separate folder..is it possible in matlab??

답변 (5개)

Sean de Wolski
Sean de Wolski 2013년 7월 30일
doc unzip
doc dir
doc movefile
Bacially use dir with a *.zip extension to find all of the zip files; loop over them and unzip, then use dir again with a *.txt extension in order locate the text files. Then use movefile to move them to your choice location.

David Sanchez
David Sanchez 2013년 7월 30일
Even when you can select the files to zip , when performing the reverse operation you do not have the choice of extracting selected files from within the zipped file. From Matlab, you can unzip the whole content of the zip file and later, delete those you do not need.

Jan
Jan 2013년 7월 30일
Of course you could save some time, when you only extract the txt files. But even posting the question here will probably take more time than extracting all files, moving the txt files selectively and deleting the unneeded files finally.
  댓글 수: 1
Jan
Jan 2013년 7월 31일
You can unzip the files in the Windows Explorer simultaneously already and the moving of the specific files works by a Search in the Explorer also. So trying to do this in Matlab and discussing it in the forum wastes time already.

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2013년 7월 30일
You might be able to do this using the Java interface to call the java zip handling routines.

Collin Pecora
Collin Pecora 2020년 6월 24일
Allows for extracting specific files from a zip archive.

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by