473,396 Members | 1,924 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to download all images.....

I want to down load all images kept under particular URL.
Here is the example.....
www.my1111site.com/images/1234.jpg
www.my1111site.com/images/1234.jpg
I only know the url upto www.mysite.com/images and not the individual image
file name.
how to develop these kind of applications using .net?
thanks
Nish

Nov 18 '05 #1
6 1470
Nish,

Are you talking about url on your site or on any site? On your site you will
probably want to zip all images into one file. You will need a zipping
program for that and the security rights for ASP.NET to run exes. Once you
get the file, you can stream it down to the client. Other sites won't let
you do this.

Eliyahu

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I want to down load all images kept under particular URL.
Here is the example.....
www.my1111site.com/images/1234.jpg
www.my1111site.com/images/1234.jpg
I only know the url upto www.mysite.com/images and not the individual image file name.
how to develop these kind of applications using .net?
thanks
Nish

Nov 18 '05 #2
I am talking of other sites.
I have seen screen scaping programs that the reason I asked.
Nish

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ef**************@TK2MSFTNGP12.phx.gbl...
Nish,

Are you talking about url on your site or on any site? On your site you will probably want to zip all images into one file. You will need a zipping
program for that and the security rights for ASP.NET to run exes. Once you
get the file, you can stream it down to the client. Other sites won't let
you do this.

Eliyahu

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I want to down load all images kept under particular URL.
Here is the example.....
www.my1111site.com/images/1234.jpg
www.my1111site.com/images/1234.jpg
I only know the url upto www.mysite.com/images and not the individual

image
file name.
how to develop these kind of applications using .net?
thanks
Nish


Nov 18 '05 #3
Hi Nish:

If you can browse the directory, you can screen scrape the directory
list to get the list of images.

I.e. ask the server for the contents of www.mysite.com/images. Find
all of the hyperlinks in the content that is returned and then request
each image individually.

The problem you may run into is that many web servers will not permit
you to browse directories. In this case you'll need to know the file
names of the images in advance or get them from another source.

HTH,

--
Scott
http://www.OdeToCode.com
On Sun, 26 Sep 2004 08:56:40 -0700, "Nish" <Ni******@hotmail.com>
wrote:
I am talking of other sites.
I have seen screen scaping programs that the reason I asked.
Nish

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ef**************@TK2MSFTNGP12.phx.gbl...
Nish,

Are you talking about url on your site or on any site? On your site you

will
probably want to zip all images into one file. You will need a zipping
program for that and the security rights for ASP.NET to run exes. Once you
get the file, you can stream it down to the client. Other sites won't let
you do this.

Eliyahu

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
> I want to down load all images kept under particular URL.
> Here is the example.....
> www.my1111site.com/images/1234.jpg
> www.my1111site.com/images/1234.jpg
> I only know the url upto www.mysite.com/images and not the individual

image
> file name.
> how to develop these kind of applications using .net?
> thanks
> Nish
>
>
>



Nov 18 '05 #4
I realize this isn't want you really want (no source code), but not sure
what your end goal is...

http://www.neowise.com/webpics/

Greg
"Nish" <Ni******@hotmail.com> wrote in message
news:ej****************@TK2MSFTNGP11.phx.gbl...
I am talking of other sites.
I have seen screen scaping programs that the reason I asked.
Nish

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ef**************@TK2MSFTNGP12.phx.gbl...
Nish,

Are you talking about url on your site or on any site? On your site you

will
probably want to zip all images into one file. You will need a zipping
program for that and the security rights for ASP.NET to run exes. Once
you
get the file, you can stream it down to the client. Other sites won't let
you do this.

Eliyahu

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
> I want to down load all images kept under particular URL.
> Here is the example.....
> www.my1111site.com/images/1234.jpg
> www.my1111site.com/images/1234.jpg
> I only know the url upto www.mysite.com/images and not the individual

image
> file name.
> how to develop these kind of applications using .net?
> thanks
> Nish
>
>
>



Nov 18 '05 #5
I do not know the image file names. Thanks for your suggestion.
Nish


"Scott Allen" <bitmask@[nospam].fred.net> wrote in message
news:gr********************************@4ax.com...
Hi Nish:

If you can browse the directory, you can screen scrape the directory
list to get the list of images.

I.e. ask the server for the contents of www.mysite.com/images. Find
all of the hyperlinks in the content that is returned and then request
each image individually.

The problem you may run into is that many web servers will not permit
you to browse directories. In this case you'll need to know the file
names of the images in advance or get them from another source.

HTH,

--
Scott
http://www.OdeToCode.com
On Sun, 26 Sep 2004 08:56:40 -0700, "Nish" <Ni******@hotmail.com>
wrote:
I am talking of other sites.
I have seen screen scaping programs that the reason I asked.
Nish

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ef**************@TK2MSFTNGP12.phx.gbl...
Nish,

Are you talking about url on your site or on any site? On your site you

will
probably want to zip all images into one file. You will need a zipping
program for that and the security rights for ASP.NET to run exes. Once you get the file, you can stream it down to the client. Other sites won't let you do this.

Eliyahu

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
> I want to down load all images kept under particular URL.
> Here is the example.....
> www.my1111site.com/images/1234.jpg
> www.my1111site.com/images/1234.jpg
> I only know the url upto www.mysite.com/images and not the individual
image
> file name.
> how to develop these kind of applications using .net?
> thanks
> Nish
>
>
>

Nov 18 '05 #6
There's an interesting component called WebZinc that you can point to an
HTML page and it returns a collection of images in the page. Once you have
the collection, you could do what you need to do.

http://www.webzinc.net/online/features/

"Nish" <Ni******@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I want to down load all images kept under particular URL.
Here is the example.....
www.my1111site.com/images/1234.jpg
www.my1111site.com/images/1234.jpg
I only know the url upto www.mysite.com/images and not the individual
image
file name.
how to develop these kind of applications using .net?
thanks
Nish


Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: lawrence | last post by:
Under the domain publicpen.com I've several dozen sites in subdiretories, such as www.publicpen.com/honenbeger. I've no trouble with any of these sites. But under one, which I put in yesterday,...
5
by: Roman | last post by:
I'm using a single css for 3 different layouts in my site, where everything is the same, but header images. Recently I've run a "download times" test and it turned out that my css is calling the 3...
0
by: Sarah Akers | last post by:
GgF ----gL5cJ72EqiGIQ0SK65Rz Content-Type: text/html; Content-Transfer-Encoding: quoted-printable <html> <head> <style type=3D"text/css">.eyebrow { FONT-WEIGHT: bold; FONT-SIZE: 10px; TE=
0
by: Anne Snow | last post by:
7qs ----bSCMEc0pLIbJxmV9 Content-Type: text/html; Content-Transfer-Encoding: quoted-printable <html><head><style type=3Dtext/css>.eyebrow { FONT-WEIGHT: bold; FONT-SIZE= : 10px;...
15
by: Frances Del Rio | last post by:
I have a bunch of Photoshop images on my server, I want when user clicks on a link to a Photoshop img for it to start downloading (like when you click on a Word file..) how can I do that? thank...
0
by: Blake Mandelbaum | last post by:
bgc ----mDuNni7bWv1kUF0gGK Content-Type: text/html; Content-Transfer-Encoding: quoted-printable <html><head><style type=3Dtext/css>.eyebrow { FONT-WEIGHT: bold; FONT-SIZE= : 10px;...
0
by: Lynda Kilgore | last post by:
jGu ----qtHwhORV90yyhqJMOc Content-Type: text/html; Content-Transfer-Encoding: quoted-printable <html><head><style type=3Dtext/css>.eyebrow { FONT-WEIGHT: bold; FONT-SIZE= : 10px;...
4
by: ACaunter | last post by:
Hi, when the download dialog box opens and i click save or open or cancel.. everything works fine.. but then it's stuck in memory or something, because nomatter what button, listbox, combobox,...
12
by: comp.lang.php | last post by:
index.php: // STUFF // STEP 1: imagecreatetruecolor ONLY IF GD 2.0+ SUPPORTED AND FOUND if ($this->isSuccessful && !$hasMogrified && $image && !$newImage &&...
3
by: foss | last post by:
hi, images are stored in MYSQL . What I need to do is to download the images from the database to some predefined directory in the webserver. I am hoping that someone could help me fixing it. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.