0

I would like to have a way for my program to get the list of file names in a zip folder.

I'm verifying my inward and outward files list to ensure the delivery of the files. As the files are more in numbers, it takes lot of time to unzip and get the names list of a zip folder. I'm in windows environment.

Is there a way where I can get the list of file names that a zip folder contains, without unzipping it.

Nitin
  • 15
  • 1
  • 8

1 Answers1

0

See this documentation for Java zip built-in support

http://docs.oracle.com/javase/7/docs/api/java/util/zip/package-summary.html

Daniel Hiller
  • 3,415
  • 3
  • 23
  • 33