Zip for WinRT
AddAsync(StorageFile) Method
Example 

zip ファイルに追加するファイル。
現在の zip ファイルにファイルを追加します。
Syntax
'Declaration
 
Public Overloads Function AddAsync( _
   ByVal file As Windows.Storage.StorageFile _
) As System.Threading.Tasks.Task
public System.Threading.Tasks.Task AddAsync( 
   Windows.Storage.StorageFile file
)

Parameters

file
zip ファイルに追加するファイル。
Remarks

このメソッドは WinRT バージョンでのみ実行できます。

このメソッドは非同期です。通常は、以下の例で示すように 'await' 文内で使用する必要があります。

Example
次のコードは、ユーザーにファイル名の入力を要求した後、それらのファイルを現在の zip アーカイブに追加します。
using Windows.Storage.Pickers;
var picker = new FileOpenPicker();
picker.ViewMode = PickerViewMode.List;
picker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
picker.FileTypeFilter.Add("*");
var files = await picker.PickMultipleFilesAsync();
if (files != null)
{
foreach (var f in files)
{
await _zip.Entries.AddAsync(f);
}
}
See Also

Reference

C1ZipEntryCollection Class
C1ZipEntryCollection Members
Overload List

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback