What can I do if the temporary file name is the same during concurrent downloads using JMP 17?
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
...