I have created a batch file after taking some advice from previous question :
After adding a time delay, the final script is the following :
@echo off
For /L %%i in (1000,1,1002) do
(
start "images" "www.images.com/%%i/image.jpg"
timeout 5 >nul
)
Now I want the website image links to be saved only if there is an image. If we get 403, 404 results or even a blank page, I don't want to get the result. That means that the code can be changed in order to save the file instead of opening the link in the browser.
Secondly, if I want to open 1000 links, it is going to take some time after having put the delay. Is there an option to make it faster without creating something like a d-dos attack thing? I mean, I do not want the server to be down because of my actions.