Dart.PowerTCP.Zip Namespace > Archive Class > BeginZip Method : BeginZip(Stream,Object) Method |
<DescriptionAttribute("Begins an asynchronous Zip operation.")> Public Overloads Function BeginZip( _ ByVal destination As Stream, _ ByVal state As Object _ ) As IAsyncResult
Dim instance As Archive Dim destination As Stream Dim state As Object Dim value As IAsyncResult value = instance.BeginZip(destination, state)
[Description("Begins an asynchronous Zip operation.")] public IAsyncResult BeginZip( Stream destination, object state )
[Description("Begins an asynchronous Zip operation.")] public: IAsyncResult* BeginZip( Stream* destination, Object* state )
[Description("Begins an asynchronous Zip operation.")] public: IAsyncResult^ BeginZip( Stream^ destination, Object^ state )
Exception | Description |
---|---|
ZipException | A critical zip operation error occurred during this activity. Please see ZipException.Message for details. |
The Archive.Password and Archive.Encryption properties are used for data encryption during the BeginZip operation.
Data is written to the Stream at the current position and is not reset to 0.
If an error occurs for an individual item during this operation, the Archive.Exception Event will be raised.
' Be sure to import the namespace by putting "Imports Dart.PowerTCP.Zip" ' at the top of your class. ' Add a file using the ArchiveItem constructor Dim item = New ArchiveItem("c:\Test\file1.txt") ' Add a comment to this item item.Comment = "This is file1.txt" ' Use encryption for just this item item.Encryption = Encryption.Standard item.Password = "testme" Archive1.Add(item) ' Add a file using the filename. This could also be used for adding wildcard collections Archive1.Add("c:\Test\file2.log") ' Add a wildcard collection of files ' In this case, all "txt" files in the directory "c:\Test" are added, except "file1.txt" ' Subfolders are not included, but the paths are preserved. Archive1.IncludeSubs = True Archive1.ExcludePattern = "file1.txt" Archive1.PreservePath = True Archive1.Add("c:\Test\*.txt") ' Start the zipping processes Archive1.BeginZip("c:\test.zip", Nothing) Private Sub Archive1_EndZip(ByVal sender As Object, ByVal e As Dart.PowerTCP.Zip.EndEventArgs) Handles Archive1.EndZip Try If e.Exception Is Nothing Then MessageBox.Show("Zip Complete!") Else MessageBox.Show(e.Exception.Message) End If Catch End Try End Sub
// Be sure to import the namespace by putting "using Dart.PowerTCP.Zip;" // at the top of your class. // Add a file using the ArchiveItem constructor ArchiveItem item = new ArchiveItem("c:\\Test\\file1.txt"); // Add a comment to this item item.Comment = "This is file1.txt"; // Use encryption for just this item item.Encryption = Encryption.Standard; item.Password = "testme"; archive1.Add(item); // Add a file using the filename. This could also be used for adding wildcard collections archive1.Add("c:\\Test\\file2.log"); // Add a wildcard collection of files // In this case, all "txt" files in the directory "c:\Test" are added, except "file1.txt" // Subfolders are not included, but the paths are preserved. archive1.IncludeSubs = true; archive1.ExcludePattern= "file1.txt"; archive1.PreservePath = true; archive1.Add("c:\\Test\\*.txt"); // Start the zipping processes archive1.BeginZip("c:\\test.zip", null); private void archive1_EndZip(object sender, Dart.PowerTCP.Zip.EndEventArgs e) { try { if (e.Exception == null) MessageBox.Show("Zip Complete!"); else MessageBox.Show(e.Exception.Message); } catch {} }