What can I do if the temporary file name is the same during concurrent downloads using JMP 17?
Created:
Mar 21, 2023 03:11 AM
| Last Modified: Jun 9, 2023 9:05 AM(1339 views)
Hello!
I used JMP 17 for a concurrent download, which resulted in temporary files with the same name, files being overwritten over and over, and only one file. How do you handle the downloaded code?
rqs = New Multi HTTP Request();
For( i = 1, i <= N Items( u ), i++,
rq = New HTTP Request( Method( "GET" ), URL( u[i] ), Timeout( 0.1 ) );
txt = rq << Send;
rqs << Add( rq );
);
hh = rqs << Get Requests();
da = rqs << Download( "show progress", "detailed" );