SevenZipArchiveEntry.Extract
内容
[
隐藏
]Extract(string, string)
通过提供的路径将条目提取到文件系统。
public FileInfo Extract(string path, string password = null)
范围 | 类型 | 描述 |
---|---|---|
path | String | 目标文件的路径。如果该文件已经存在,它将被覆盖。 |
password | String | 用于解密的可选密码。 |
返回值
组合文件的文件信息。
例外
例外 | (健康)状况 |
---|---|
ArgumentNullException | path一片空白。 |
SecurityException | 调用者没有所需的访问权限。 |
ArgumentException | 这path为空、仅包含空格或包含无效字符。 |
UnauthorizedAccessException | 访问文件path被拒绝。 |
PathTooLongException | 指定的path、文件名或两者都超过了系统定义的最大长度。例如,在基于 Windows 的平台上,路径必须少于 248 个字符,文件名必须少于 260 个字符。 |
NotSupportedException | 归档于path在字符串中间包含一个冒号 (:)。 |
例子
using (var archive = new SevenZipArchive("archive.7z"))
{
archive.Entries[0].Extract("data.bin");
}
也可以看看
- class SevenZipArchiveEntry
- 命名空间 Aspose.Zip.SevenZip
- 部件 Aspose.Zip
Extract(Stream, string)
将条目提取到所提供的流中。
public void Extract(Stream destination, string password = null)
范围 | 类型 | 描述 |
---|---|---|
destination | Stream | 目标流。必须是可写的。 |
password | String | 用于解密的可选密码。 |
例外
例外 | (健康)状况 |
---|---|
ArgumentException | destination不支持写入。 |
InvalidOperationException | 存档未打开以进行提取。 - 或 - 此条目是一个目录。 |
InvalidDataException | 条目中的错误数据。 |
例子
使用密码提取 zip 存档的条目。
using (var archive = new SevenZipArchive("archive.7z"))
{
archive.Entries[0].Extract(httpResponseStream);
}
也可以看看
- class SevenZipArchiveEntry
- 命名空间 Aspose.Zip.SevenZip
- 部件 Aspose.Zip