system.io.packaging

Extracting files from a Zip archive programmatically using C# and System.IO.Packaging

I have a bunch of ZIP files that are in desperate need of some hierarchical reorganization and extraction. What I can do, currently, is create the directory structure and move the zip files to the proper location. The mystic cheese that I am missing is the part that extracts the files from the ZIP archive. I have seen the MSDN article...

Tutorials on Open Packaging Conventions / System.IO.Packaging

Has anyone seen a good tutorial on Open Packaging Conventions and the System.IO.Packaging namespace? I have some areas where I think this technology could be useful, but I'm nervous because I don't quite understand it and I'm stuck on some of the terminology. ...

Is there a Java library equivalent to Microsoft/.NET System.IO.Packaging?

Is there a Java library equivalent to System.IO.Packaging. If so what is the experience of unpacking DOCX files editing DOCX files building DOCX files from scratch. ...

Create a Stream without having a physical file to create from.

I'm needing to create a zip file containing documents that exist on the server. I am using the .Net Package class to do so, and to create a new Package (which is the zip file) I have to have either a path to a physical file or a stream. I am trying to not create an actual file that would be the zip file, instead just create a stream that...

Using IsolatedStorage on a IIS server

I'am a bit confused about the use of Isolated Storage on a IIS server. I understand the goal of Isolated Storage : provides a safe place to store data with no worry about how and where is this place. Since Isolated Storage have a by-user and by-assembly approach, I'am not to wild about using it on a IIS server where applications have a...