ZipFile.OpenDelete Field

Definition

Mode flag to open a zip file and mark it for deletion.

[Android.Runtime.Register("OPEN_DELETE")]
public const int OpenDelete = 4;
[<Android.Runtime.Register("OPEN_DELETE")>]
val mutable OpenDelete : int

Field Value

Value = 4
Attributes

Remarks

Mode flag to open a zip file and mark it for deletion. The file will be deleted some time between the moment that it is opened and the moment that it is closed, but its contents will remain accessible via the ZipFile object until either the close method is invoked or the virtual machine exits.

Java documentation for java.util.zip.ZipFile.OPEN_DELETE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to