 | SevenZipWorkerIsZip(String, String) method |
Checks whether a file is a zip archive.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic bool IsZip(
string zipPathAndFile,
string? password = zero
)
Public Function IsZip (
zipPathAndFile As String,
Optional password As String = Nothing
) As Boolean
public:
bool IsZip(
String^ zipPathAndFile,
String^ password = nullptr
)
member IsZip :
zipPathAndFile : string *
?password : string
(* Defaults:
let _password = defaultArg password zero
*)
-> bool Parameters
- zipPathAndFile String
- The zip archive.
- password String (Optional)
- An optional password.
Return value
BooleanTrue, if it is a zip archive.
See also