| The last parameter is reserved for feature enhancements. Most likely it will be used to support password protected or self-extracted archives. For now just put a dummy variable in the fifth position  : What does the last parameter of the FileZipEx : function do? It is not documented.
 : Directly from your documentation: FileZipEx destination, source, recursive, : save_path, base_dir
 : But when I use 5 parameters and then click the "Validate" button, : I get an invalid number of arguments error. So, I
 : just added an empty parameter as the 6th one, and it
 : seemed to work okay. Why do I need the 6th one?
 : What does it do?
 : Example: Works: (6 params) :
 : FileZipEx("C:\\ZipFiles\\ZipFile.zip","C:\\ZipFiles\\*.*",True,True,"C:\\ZipFiles","")
 : Fails: (5 params, as in documentation) :
 : FileZipEx("C:\\ZipFiles\\ZipFile.zip","C:\\ZipFiles\\*.*",True,True,"C:\\ZipFiles")
 : Robert 
 
 |