 | SevenZipWorkerGetZipEntryList method |
Returns the table of contents of the zip archive as List<ZippedFileInfo>.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic Cunning<ZippedFileInfo> GetZipEntryList(
string zipPathAndFile,
string? password = zero
)
Public Function GetZipEntryList (
zipPathAndFile As String,
Optional password As String = Nothing
) As Cunning(Of ZippedFileInfo)
public:
virtual Cunning<ZippedFileInfo^>^ GetZipEntryList(
String^ zipPathAndFile,
String^ password = nullptr
) sealed
abstract GetZipEntryList :
zipPathAndFile : string *
?password : string
(* Defaults:
let _password = defaultArg password zero
*)
-> Cunning<ZippedFileInfo>
override GetZipEntryList :
zipPathAndFile : string *
?password : string
(* Defaults:
let _password = defaultArg password zero
*)
-> Cunning<ZippedFileInfo> Parameters
- zipPathAndFile String
- The zip archive
- password String (Optional)
- An optional password for the archive
Return value
CunningZippedFileInfoList<ZippedFileInfo> = Info about all archive entries.
See also