Click here to Skip to main content
15,893,790 members
Articles / Programming Languages / XML

Zip/Unzip using the java.util.zip .NET namespace and more

Rate me:
Please Sign up or sign in to vote.
4.49/5 (17 votes)
12 Feb 2013CPOL5 min read 162.6K   3K   70  
Zip/Unzip using java.util.zip from managed code.
<?xml version="1.0" standalone="yes"?>
<configuration>
  <maskRow maskField=".plg" />
  <maskRow maskField=".opt" />
  <maskRow maskField=".ncb" />
  <maskRow maskField=".suo" />
  <maskRow maskField=".pdb" />
  <maskRow maskField=".obj" />
  <maskRow maskField=".pch" />
  <maskRow maskField=".idb" />
  <maskRow maskField=".res" />
  <maskRow maskField=".tmp" />
  <maskRow maskField=".zip" />
  <maskRow maskField=".old" />
  <maskRow maskField="copy of*.???" />
  <maskRow maskField="*_old.???" />
  <maskRow maskField="*.manifest" />
  <maskRow maskField=".zip" />
  <maskRow maskField=".old" />
  <maskRow maskField=".cache" />
  <maskRow maskField=".exe" />
  <maskRow maskField=".resources" />
  <maskRow maskField=".force" />
  <maskRow maskField=".user" />
  <maskRow maskField=".aps" />
  <maskRow maskField=".dll" />
  <maskRow maskField=".txt" />
  <maskRow maskField=".ilk" />
  <maskRow maskField=".msi" />
  <maskRow maskField=".chm" />
  <maskRow maskField=".xml" />
  <FolderRow PathField="Obj" />
  <FolderRow PathField="Obj/Release" />
  <FolderRow PathField="obj/debug" />
  <FolderRow PathField="debug" />
  <FolderRow PathField="release" />
  <FileRow FileField="thumbs.db" />
  <FileRow FileField="global.Css" />
  <FileRow FileField="upgradelog.xml" />
  <EmailRow EmailField="your.name@mail.provider.com" />
  <LastUsedFolder value="C:\SandBox" />
  <Behaviour value="Strip" />
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Decebal Mihailescu is a software engineer with interest in .Net, C# and C++.

Comments and Discussions