ZipFileExtensions.CreateEntryFromFile 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
透過將檔案壓縮並加入至 zip 封存的方式進行封存。
多載
CreateEntryFromFile(ZipArchive, String, String) |
透過將檔案壓縮並加入至 zip 封存的方式進行封存。 |
CreateEntryFromFile(ZipArchive, String, String, CompressionLevel) |
透過將檔案以指定之壓縮等級壓縮並加入至 zip 封存的方式進行封存。 |
CreateEntryFromFile(ZipArchive, String, String)
透過將檔案壓縮並加入至 zip 封存的方式進行封存。
public:
[System::Runtime::CompilerServices::Extension]
static System::IO::Compression::ZipArchiveEntry ^ CreateEntryFromFile(System::IO::Compression::ZipArchive ^ destination, System::String ^ sourceFileName, System::String ^ entryName);
public static System.IO.Compression.ZipArchiveEntry CreateEntryFromFile (this System.IO.Compression.ZipArchive destination, string sourceFileName, string entryName);
static member CreateEntryFromFile : System.IO.Compression.ZipArchive * string * string -> System.IO.Compression.ZipArchiveEntry
<Extension()>
Public Function CreateEntryFromFile (destination As ZipArchive, sourceFileName As String, entryName As String) As ZipArchiveEntry
參數
- destination
- ZipArchive
要將檔案加入至其中的 Zip 封存。
- sourceFileName
- String
要封存的檔案之路徑。 您可以指定相對或絕對路徑。 相對路徑會解譯為與目前的工作目錄相對。
- entryName
- String
要在 Zip 封存中建立之項目的名稱。
傳回
zip 封存中之新項目的包裝函式。
例外狀況
sourceFileName
或 entryName
為 null
。
在 sourceFileName
中,指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。
sourceFileName
無效 (例如它位於未對應的磁碟機上)。
無法開啟 所 sourceFileName
指定的檔案,或太大而無法更新, (目前的限制為 Int32.MaxValue) 。
找不到 sourceFileName
所指定的檔案。
Zip 封存已經處置。
範例
下列範例示範如何從現有的檔案在 zip 封存中建立新專案。
using System;
using System.IO;
using System.IO.Compression;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
string zipPath = @"c:\users\exampleuser\start.zip";
string extractPath = @"c:\users\exampleuser\extract";
string newFile = @"c:\users\exampleuser\NewFile.txt";
using (ZipArchive archive = ZipFile.Open(zipPath, ZipArchiveMode.Update))
{
archive.CreateEntryFromFile(newFile, "NewEntry.txt");
archive.ExtractToDirectory(extractPath);
}
}
}
}
Imports System.IO
Imports System.IO.Compression
Module Module1
Sub Main()
Dim zipPath As String = "c:\users\exampleuser\end.zip"
Dim extractPath As String = "c:\users\exampleuser\extract"
Dim newFile As String = "c:\users\exampleuser\NewFile.txt"
Using archive As ZipArchive = ZipFile.Open(zipPath, ZipArchiveMode.Update)
archive.CreateEntryFromFile(newFile, "NewEntry.txt", CompressionLevel.Fastest)
archive.ExtractToDirectory(extractPath)
End Using
End Sub
End Module
備註
封存中的新專案包含 所 sourceFileName
指定的檔案內容。 如果封存中已經有具有指定名稱的專案 (entryName
) ,則會使用相同的名稱建立第二個專案。 項目的 LastWriteTime 屬性會設定為檔案系統上檔案上次變更的時間。
當 存在時 ZipArchiveMode.Update
,專案的大小限制會限制為 Int32.MaxValue。 此限制是因為更新模式會在內部使用 MemoryStream ,以允許更新封存時所需的搜尋,且 MemoryStream 最大等於 int 的大小。
適用於
CreateEntryFromFile(ZipArchive, String, String, CompressionLevel)
透過將檔案以指定之壓縮等級壓縮並加入至 zip 封存的方式進行封存。
public:
[System::Runtime::CompilerServices::Extension]
static System::IO::Compression::ZipArchiveEntry ^ CreateEntryFromFile(System::IO::Compression::ZipArchive ^ destination, System::String ^ sourceFileName, System::String ^ entryName, System::IO::Compression::CompressionLevel compressionLevel);
public static System.IO.Compression.ZipArchiveEntry CreateEntryFromFile (this System.IO.Compression.ZipArchive destination, string sourceFileName, string entryName, System.IO.Compression.CompressionLevel compressionLevel);
static member CreateEntryFromFile : System.IO.Compression.ZipArchive * string * string * System.IO.Compression.CompressionLevel -> System.IO.Compression.ZipArchiveEntry
<Extension()>
Public Function CreateEntryFromFile (destination As ZipArchive, sourceFileName As String, entryName As String, compressionLevel As CompressionLevel) As ZipArchiveEntry
參數
- destination
- ZipArchive
要將檔案加入至其中的 Zip 封存。
- sourceFileName
- String
要封存的檔案之路徑。 您可以指定相對或絕對路徑。 相對路徑會解譯為與目前的工作目錄相對。
- entryName
- String
要在 Zip 封存中建立之項目的名稱。
- compressionLevel
- CompressionLevel
其中一個列舉值,指出當建立項目時是否要強調速度或壓縮的效益。
傳回
zip 封存中之新項目的包裝函式。
例外狀況
sourceFileName
或 entryName
為 null
。
sourceFileName
無效 (例如它位於未對應的磁碟機上)。
在 sourceFileName
中,指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。
無法開啟 所 sourceFileName
指定的檔案,或太大而無法更新, (目前的限制為 Int32.MaxValue) 。
找不到 sourceFileName
所指定的檔案。
Zip 封存已經處置。
範例
下列範例示範如何從現有的檔案在 zip 封存中建立新專案,並指定壓縮層級。
using System;
using System.IO;
using System.IO.Compression;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
string zipPath = @"c:\users\exampleuser\start.zip";
string extractPath = @"c:\users\exampleuser\extract";
string newFile = @"c:\users\exampleuser\NewFile.txt";
using (ZipArchive archive = ZipFile.Open(zipPath, ZipArchiveMode.Update))
{
archive.CreateEntryFromFile(newFile, "NewEntry.txt", CompressionLevel.Fastest);
archive.ExtractToDirectory(extractPath);
}
}
}
}
Imports System.IO
Imports System.IO.Compression
Module Module1
Sub Main()
Dim zipPath As String = "c:\users\exampleuser\end.zip"
Dim extractPath As String = "c:\users\exampleuser\extract"
Dim newFile As String = "c:\users\exampleuser\NewFile.txt"
Using archive As ZipArchive = ZipFile.Open(zipPath, ZipArchiveMode.Update)
archive.CreateEntryFromFile(newFile, "NewEntry.txt", CompressionLevel.Fastest)
archive.ExtractToDirectory(extractPath)
End Using
End Sub
End Module
備註
封存中的新專案包含 所 sourceFileName
指定的檔案內容。 如果封存中已經有具有指定名稱的專案 (entryName
) ,則會使用相同的名稱建立第二個專案。 項目的 LastWriteTime 屬性會設定為檔案系統上檔案上次變更的時間。
當 存在時 ZipArchiveMode.Update
,專案的大小限制會限制為 Int32.MaxValue。 此限制是因為更新模式會在內部使用 MemoryStream ,以允許更新封存時所需的搜尋,且 MemoryStream 最大等於 int 的大小。