tags:

views:

23

answers:

1

Everything in on the title, is there a way to extract the list of jar classes (equivalent of jar tf) within C# ?

Thanks

+1  A: 

AfaIk, jars are just ZIP-Files with a different extension. So any good ZIP libary should do the trick.

A quick google gave me sharpziplib and this code example on how to iterate through all files in a ZIP archive.

MartinStettner
Thank you, I heard about it but I just wanted to know if there's another way to do that.
Ars