i just wanna know is there any way to insert .rar file(we can do it easily with the help of fileupload),and i need to display records in that .rar file in datalist individullay,is it possible..? if it is it will helps for my project alot.please share your answers
Thanks and Regards
Sanjeeb LenkaPosted Oct 3, 2013, 6:25 AM
sample code to extract zip.
String TargetDirectory = "c:\\MyZipFile.zip";
using (Ionic.Zip.ZipFile zip1 = Ionic.Zip.ZipFile.Read(TargetDirectory))
{
zip1.ExtractAll("c:\\UnZip",
Ionic.Zip.ExtractExistingFileAction.DoNotOverwrite);
}
link to download
http://dotnetzip.codeplex.com/
aditya immadiPosted Oct 3, 2013, 1:10 PM