I am trying to create a simple ZIP file with the ZIP plugin. A Zip file is never created and GetLastError returns 1027 ("Operation aborted by user.").
Here is a sample I tried with many variations:
I am using SUF 9.1.1.0 on Windows 7 x64 Pro.
Is there a known bug in the ZIP plugin? Is there some secret I need to know? Thanks.
Here is a sample I tried with many variations:
Code:
DesktopFolder = SessionVar.Get("%DesktopFolder%");
Zip.Add(DesktopFolder.."\\my.zip", { "c:\\myapp\mydir\\*.*" }, true, "", 5, nil, false);
Is there a known bug in the ZIP plugin? Is there some secret I need to know? Thanks.