मुझे पता है कि यह एक पुराना धागा है, लेकिन मैं अभी इस पर कुछ उपयोगी जानकारी पोस्ट करने से दूर नहीं जा सकता। मैं देख रहा हूं कि जिप प्रश्न बहुत सामने आया है और यह उत्तर अधिकतर सामान्य प्रश्नों का है।
4.5 + का उपयोग करने के ढांचे के मुद्दों के बारे में जानने के लिए ... वे jaime-olivares द्वारा बनाई गई एक ZipStorer वर्ग है: https://github.com/jaime-olivares/zipstorer , उन्होंने इस वर्ग का उपयोग करने के तरीके का एक उदाहरण भी जोड़ा है अच्छी तरह से और एक उदाहरण भी जोड़ा है कि कैसे एक विशिष्ट फ़ाइल नाम के लिए खोज करने के लिए।
और इस का उपयोग करने के संदर्भ के लिए और एक निश्चित फ़ाइल एक्सटेंशन के माध्यम से पुनरावृति करें उदाहरण के लिए आप ऐसा कर सकते हैं:
#region
/// <summary>
/// Custom Method - Check if 'string' has '.png' or '.PNG' extension.
/// </summary>
static bool HasPNGExtension(string filename)
{
return Path.GetExtension(filename).Equals(".png", StringComparison.InvariantCultureIgnoreCase)
|| Path.GetExtension(filename).Equals(".PNG", StringComparison.InvariantCultureIgnoreCase);
}
#endregion
private void button1_Click(object sender, EventArgs e)
{
//NOTE: I recommend you add path checking first here, added the below as example ONLY.
string ZIPfileLocationHere = @"C:\Users\Name\Desktop\test.zip";
string EXTRACTIONLocationHere = @"C:\Users\Name\Desktop";
//Opens existing zip file.
ZipStorer zip = ZipStorer.Open(ZIPfileLocationHere, FileAccess.Read);
//Read all directory contents.
List<ZipStorer.ZipFileEntry> dir = zip.ReadCentralDir();
foreach (ZipStorer.ZipFileEntry entry in dir)
{
try
{
//If the files in the zip are "*.png or *.PNG" extract them.
string path = Path.Combine(EXTRACTIONLocationHere, (entry.FilenameInZip));
if (HasPNGExtension(path))
{
//Extract the file.
zip.ExtractFile(entry, path);
}
}
catch (InvalidDataException)
{
MessageBox.Show("Error: The ZIP file is invalid or corrupted");
continue;
}
catch
{
MessageBox.Show("Error: An unknown error ocurred while processing the ZIP file.");
continue;
}
}
zip.Close();
}