this is you'r actual code
Func _Zip_AddFile($hZipFile, $hFile2Add, $flag = 4)
Local $DLLChk = _Zip_DllChk()
Local $files = _Zip_Count($hZipFile)
If $DLLChk <> 0 Then Return SetError($DLLChk, 0, 0);no dll
If not _IsFullPath($hZipFile) then Return SetError(4,0);zip file isn't a full path
If Not FileExists($hZipFile) Then Return SetError(1, 0, 0);no zip file
$oApp = ObjCreate("Shell.Application")
$copy = $oApp.NameSpace($hZipFile).CopyHere($hFile2Add)
;WinSetState"[CLASS:SysAnimate32; INSTANCE:1]" "#32770"
While 1
If _Zip_Count($hZipFile) = ($files+1) Then ExitLoop
WEnd
Return SetError(0,0,1)
EndFunc ;==>_Zip_AddFile
This will end up in an endless loop if the file $hFile2Add dosn't exist
OK i got it
this here
While 1
If _Zip_Count($hZipFile) = ($files+1) Then ExitLoop
WEnd
wait until the file is added into the zip file
I would prefer a timer ...
but checking ( If Not FileExists($hFile2Add) Then Return SetError(4, 0, 4);no file to add ) before calling Shell.Application would be good enough
I've used your functions inside a script to compress a file
but under some conditions the log file wasn't generated
while i want to compreess it into a zip archive
So i ended up in a loop!