HI
I am creating the Zip file based on the Hierarchy.. So i am recrusively go throught the enteries and get the selected path and add the FIle under the Folder. my issue is how to retrive the selected path from the selectedEntries.
ZipEntry en = zip.SelectEntries(FileName).FirstOrDefault();
if the filename having space it is throwing argument null exception,
pls see the attached sample project. like that employee structureneed to create the folder,
can u update my project and send me..
thanks and regards
Kannan
Hi,
I couldn't quite catch what exactly you are trying to achieve from the provided sample. Here a few notes that might be of help:
ZipEntry en = zip.Entries.FirstOrDefault(e => e.FileName == FileName);
Regards