Copyright © 2006-2019 MultiMedia Soft

ZIP.EntriesCountGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the number of entries inside the ZIP file previously opened through the ZIP.Open method or created through the ZIP.Create method.

 

For further details about methods for ZIP management refer to the ZipMan class.

For details about using ZIP management refer to the How to manage ZIP files tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function EntriesCountGet (

ByRef nCount as Int32

) as enumErrorCodes


 

[C#]

public enumErrorCodes EntriesCountGet (

ref Int32 nCount

);


 

[C++]

public: enumErrorCodes EntriesCountGet (

Int32 __gc *nCount

);


 

 

Parameter

Description

 

 

nCount

Reference that, on return from the method call, will contain the the number of entries.

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.