ZipFile.OpenDelete Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.