I am using Entity Framework as part of a school/course project where users should be allowed to upload files or directories. If it's a directory it has to be zipped(I got hold of DotNetZip) but I am not sure of how convert the zip file into a byte[]. Also should I store the zip in the temp directory and delete it once it has been saved?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||
|
|
According to http://dotnetzip.codeplex.com/wikipage?title=CS-Examples&referringTitle=Examples, you can save the zip file to a memory stream without writing it to any temporary file:
|
||||
|
|