2
I have a class ZipFile
in my project. In it there is a method called ExtractAll
, which is the method used in my file extraction routine. I need to look at this method(if possible), because when I extract the zip file, and I have a pasta
with several pastas
inside. This folder is like this:
ws -> tiss -> v3 -> 02 -> 00
In the folder 00
there is only one file and that is the last folder of unzip
and when this happens, the last file, from the last folder, from the last sequence is not being extracted. Can you open the class or not? There is a solution to this?
Use a tool such as the Reflector (http://www.red-gate.com/products/dotnet-development/reflector/) to open the . dll containing that class
– Marciano.Andrade
Take a look at this question: http://answall.com/questions/112817/o-que%C3%A9-engineering-reverse/112852
– Marciano.Andrade
@Marciano.Andrade, your comment solved my need. If post as response, I vote and end the post.
– pnet