Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
18k views

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 ...
6
votes
2answers
1k views

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 ...
4
votes
1answer
443 views

Creating zip in c# with System.IO.Packaging

I am trying to create zip file dynamically on the server that includes photos from online services. But when I try to open the file, WinRar sais the the file is unknown format or damaged. this is the ...
4
votes
3answers
1k views

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 ...
3
votes
5answers
403 views

C# System.IO.Packaging

I have my project set to .NET Framework 4.0. When I add System.IO.Packaging, it says that it doesn't exist. It also doesn't show up when I try to add it as a reference to the project. How can I add ...
2
votes
0answers
471 views

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. ...
1
vote
1answer
250 views

Unpacking zip file in c# using System.IO.Packaging

I want to unzip a file in c# using the System.IO.Packaging namespace. I know there is a zip library, but I would rather first explore if I can achieve the same without adding extra dependencies. Here ...
0
votes
0answers
44 views

Load Assembly stored in Package (C#)

Is it possible to load an assembly that is stored in a package (a System.IO.Packaging type package, that is) in C#? I am using ReflectionLoadFrom and passing the Uri that is formed by the ...
0
votes
2answers
190 views

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.