Quote Originally Posted by TomasRiker View Post
Maybe the files are stored with a path inside the Zip file.
How can I prevent this?

Here's how I create the zip file:

Code:
                ZipFile zipfile = ZipFile.Create(pathAndNameExtStripped + acmZipExtensionStr);
                zipfile.BeginUpdate();
                zipfile.Add(pathAndFileName);
                zipfile.CommitUpdate();
                zipfile.Close();