Asynchronous calls to zip_add?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
aliteralmind
Posts: 261
Joined: 02 Dec 2014 16:49

Asynchronous calls to zip_add?

Post by aliteralmind »

I'm creating multiple zip files with lots of calls to zip_add(). Is there a way to prevent the next one from being called until the current one has completed? It's spawning up to four simultaneous processes, which I'd like to prevent.
Windows 8.1, 64-bit

admin
Site Admin
Posts: 60530
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Asynchronous calls to zip_add?

Post by admin »

Nope, not possible.

aliteralmind
Posts: 261
Joined: 02 Dec 2014 16:49

Re: Asynchronous calls to zip_add?

Post by aliteralmind »

There's something oddly comforting in hearing such an absolute answer from you, Don.
Windows 8.1, 64-bit

admin
Site Admin
Posts: 60530
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Asynchronous calls to zip_add?

Post by admin »

:lol: :appl:

Enternal
Posts: 1174
Joined: 10 Jan 2012 18:26

Re: Asynchronous calls to zip_add?

Post by Enternal »

Well, it won't really solve the problem but you could use the wait scripting command between each zip_add and hopefully the previous one finish before the next on starts.

Code: Select all

Wait 1000; //Wait 1 Second (1000 milliseconds)

Post Reply