Asynchronous calls to zip_add?
-
aliteralmind
- Posts: 261
- Joined: 02 Dec 2014 16:49
Asynchronous calls to zip_add?
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: 66298
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
aliteralmind
- Posts: 261
- Joined: 02 Dec 2014 16:49
Re: Asynchronous calls to zip_add?
There's something oddly comforting in hearing such an absolute answer from you, Don.
Windows 8.1, 64-bit
-
admin
- Site Admin
- Posts: 66298
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
Enternal
- Posts: 1175
- Joined: 10 Jan 2012 18:26
Re: Asynchronous calls to zip_add?
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)
XYplorer Beta Club