Extreme URL Generator is a very small application. It can be used to generate URLs based on a particular sequence.
For example, if we need to 100 files from website and the URLs are in the order
http://www.site.com/gallery/img000.jpg
http://www.site.com/gallery/img001.jpg
http://www.site.com/gallery/img002.jpg ...........
Then we can use this application to generate the names. You can specify the URL syntax
http://www.site.com/gallery/img[1].jpg
and the range from 0 to 10 with step 1 (or the number added), number of digits 3.
There is a "varying number" which we can enable. Any number of this term can be specified. What it does is that it will iterate the urls.
For example,
http://www.site.com/gallery/img[1][2].jpg
With the usual numbering "1" as 1, 2, 3 and another varying number "2" as 1,2,3 will generate
http://www.site.com/gallery/img001001.jpg
http://www.site.com/gallery/img001002.jpg
http://www.site.com/gallery/img001003.jpg
http://www.site.com/gallery/img002002.jpg
http://www.site.com/gallery/img002002.jpg .......................
I have no idea why would anyone buy this program for 14.95$. The same data can easily be generated by a simple iterative command in VB Script or Java Script or in the "command prompt" in windows.
For example, try the JavaScript code
//______________START_________________________________
var fso, f1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f1 = fso.CreateTextFile("URLs.txt", true); more
Comments