SetSource

ZArchive.SetSource method (1 of 3)

Sets the content to be compressed within the archive.

public void SetSource(Stream source)
ParameterTypeDescription
sourceStreamThe input stream for the archive.

Examples

using (var archive = new ZArchive())
{
    archive.SetSource(new MemoryStream(new byte[] { 0x00, 0xFF }));
    archive.Save("archive.Z");
}

See Also


ZArchive.SetSource method (2 of 3)

Sets the content to be compressed within the archive.

public void SetSource(FileInfo fileInfo)
ParameterTypeDescription
fileInfoFileInfoFileInfo which will be opened as input stream.

Exceptions

exceptioncondition
SecurityExceptionThe caller does not have the required permission to open the fileInfo.
ArgumentExceptionFile path is empty or contains only white spaces.
FileNotFoundExceptionThe file is not found.
UnauthorizedAccessExceptionPath to file is read-only or is a directory.
ArgumentNullExceptionfileInfo is null.
DirectoryNotFoundExceptionThe specified path is invalid, such as being on an unmapped drive.
IOExceptionThe file is already open.

Examples

using (var archive = new ZArchive()) 
{
    archive.SetSource(new FileInfo("data.bin"));
    archive.Save("data.bin.Z");
}

See Also


ZArchive.SetSource method (3 of 3)

Sets the content to be compressed within the archive.

public void SetSource(string sourcePath)
ParameterTypeDescription
sourcePathStringPath to file which will be opened as input stream.

Exceptions

exceptioncondition
ArgumentNullExceptionsourcePath is null or empty string.
SecurityExceptionThe caller does not have the required permission to access a resource.
ArgumentExceptionThe sourcePath is empty, contains only white spaces, or contains invalid characters.
UnauthorizedAccessExceptionAccess to file sourcePath is denied.
PathTooLongExceptionThe specified sourcePath, 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.
NotSupportedExceptionFile at sourcePath contains a colon (:) in the middle of the string.

Examples

using (var archive = new ZArchive()) 
{
    archive.SetSource("data.bin");
    archive.Save("data.bin.Z");
}

See Also