LzipArchive.SetSource
SetSource(Stream)
Sets the content to be compressed within the archive.
public void SetSource(Stream source)
| Parameter | Type | Description |
|---|
| source | Stream | The input stream for the archive. |
Exceptions
| exception | condition |
|---|
| ObjectDisposedException | Archive has been disposed and cannot be used. |
| ArgumentException | The source stream is unseekable. |
Examples
using (var archive = new LzipArchive())
{
archive.SetSource(new MemoryStream(new byte[] { 0x00, 0xFF }));
archive.Save("archive.lz");
See Also
SetSource(FileInfo)
Sets the content to be compressed within the archive.
public void SetSource(FileInfo fileInfo)
| Parameter | Type | Description |
|---|
| fileInfo | FileInfo | FileInfo which will be opened as input stream. |
Exceptions
| exception | condition |
|---|
| ObjectDisposedException | Archive has been disposed and cannot be used. |
| SecurityException | The caller does not have the required permission to open the fileInfo. |
| ArgumentException | The file path is empty or contains only white spaces. |
| FileNotFoundException | The file is not found. |
| UnauthorizedAccessException | Path to file is read-only or is a directory. |
| ArgumentNullException | fileInfo is null. |
| DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. |
| IOException | The file is already open. |
Examples
using (var archive = new LzipArchive())
{
archive.SetSource(new FileInfo("data.bin"));
archive.Save("archive.lz");
}
See Also
SetSource(string)
Sets the content to be compressed within the archive.
public void SetSource(string path)
| Parameter | Type | Description |
|---|
| path | String | Path to file to be compressed. |
Exceptions
| exception | condition |
|---|
| ObjectDisposedException | Archive has been disposed and cannot be used. |
| ArgumentNullException | path is null. |
| SecurityException | The caller does not have the required permission to access. |
| ArgumentException | The path is empty, contains only white spaces, or contains invalid characters. |
| UnauthorizedAccessException | Access to file path is denied. |
| PathTooLongException | The specified path, 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 path contains a colon (:) in the middle of the string. |
Examples
using (var archive = new LzipArchive())
{
archive.SetSource("data.bin");
archive.Save("archive.lz");
}
See Also