Archive.Save
Contents
[
Hide
]Save(Stream, ArchiveSaveOptions)
Saves archive to the stream provided.
public void Save(Stream outputStream, ArchiveSaveOptions saveOptions = null)
Parameter | Type | Description |
---|---|---|
outputStream | Stream | Destination stream. |
saveOptions | ArchiveSaveOptions | Options for archive saving. |
Exceptions
exception | condition |
---|---|
ArgumentException | outputStream is not writable. |
ObjectDisposedException | The archive is disposed. |
Remarks
outputStream must be writable.
Examples
using (FileStream zipFile = File.Open("archive.zip", FileMode.Create))
{
using (var archive = new Archive())
{
archive.CreateEntry("entry.bin", "data.bin");
archive.Save(zipFile);
}
}
See Also
- class ArchiveSaveOptions
- class Archive
- namespace Aspose.Zip
- assembly Aspose.Zip
Save(string, ArchiveSaveOptions)
Saves archive to the destination file provided.
public void Save(string destinationFileName, ArchiveSaveOptions saveOptions = null)
Parameter | Type | Description |
---|---|---|
destinationFileName | String | The path of the archive to be created. If the specified file name points to an existing file, it will be overwritten. |
saveOptions | ArchiveSaveOptions | Options for archive saving. |
Exceptions
exception | condition |
---|---|
ArgumentNullException | destinationFileName is null. |
SecurityException | The caller does not have the required permission to access. |
ArgumentException | The destinationFileName is empty, contains only white spaces, or contains invalid characters. |
UnauthorizedAccessException | Access to file destinationFileName is denied. |
PathTooLongException | The specified destinationFileName, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. |
NotSupportedException | File at destinationFileName contains a colon (:) in the middle of the string. |
FileNotFoundException | The file is not found. |
DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. |
IOException | The file is already open. |
Remarks
It is possible to save an archive to the same path as it was loaded from. However, this is not recommended because this approach uses copying to a temporary file.
Examples
using (var archive = new Archive())
{
archive.CreateEntry("entry.bin", "data.bin");
archive.Save("archive.zip", new ArchiveSaveOptions() { Encoding = Encoding.ASCII });
}
See Also
- class ArchiveSaveOptions
- class Archive
- namespace Aspose.Zip
- assembly Aspose.Zip