I am creating a pc window application that downloads image from a website url. The user is allowed to select which folder to download to.
But the problem I have is that the foreach loop only does this process once...
public bool Url_checker(string link)
{
try
{
//Creating the HttpWebRequest
HttpWebRequest request = WebRequest.Create(link.Trim()) as HttpWebRequest;
//Setting the Request method HEAD, you can also use GET too.
request.Method = "HEAD";
//Getting the Web Response.
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
//Returns TRUE if the Status code == 200
return (response.StatusCode == HttpStatusCode.OK);
}
catch (WebException)
{
return false;
}
}
private void submit_Click(object sender, EventArgs e)
{
FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog();
folderBrowserDialog1.ShowDialog();
string saveToThisFolder = folderBrowserDialog1.SelectedPath ;
int i = 0;
var di = new DirectoryInfo(saveToThisFolder);
di.Attributes &= ~FileAttributes.ReadOnly;
int counter = 0;
foreach (string x in urllist.Lines)
{
string EndOfURL = x.Substring(x.Length - 4);
if (Url_checker(x) && (EndOfURL == ".jpg" || EndOfURL == ".gif" || EndOfURL == ".jpeg" || EndOfURL == ".png"))
{
byte[] data;
//using (WebClient client = new WebClient())
//{
WebClient client = new WebClient();
data = client.DownloadData(x);
// }
File.WriteAllBytes(saveToThisFolder + @"\" + (i++ + EndOfURL), data);
counter++;
workingURL.Text += x; //+ System.Environment.NewLine
}
else
{
errorURL.Text += (x + System.Environment.NewLine);
}
}
folderBrowserDialog1.Dispose();
}
GUI design is here.
The last result is this,
It only prints and downloads once. Its as if, its only reading the 1st line of the textbox. Or The foreach loop is wrong.
Thanks
Here is the new CODE, CLeaned private void submit_Click(object sender, EventArgs e) {
FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog();
folderBrowserDialog1.ShowDialog();
string saveToThisFolder = folderBrowserDialog1.SelectedPath;
int i = 0;
var di = new DirectoryInfo(saveToThisFolder);
di.Attributes &= ~FileAttributes.ReadOnly;
int counter = 0;
foreach (string x in urllist.Lines)
{
try
{
string EndOfURL = x.Substring(x.Length - 4);
if (Url_checker(x) && (EndOfURL == ".jpg" || EndOfURL == ".gif" || EndOfURL == ".jpeg" || EndOfURL == ".png"))
{
byte[] data;
using (WebClient client = new WebClient())
{
data = client.DownloadData(x);
File.WriteAllBytes(saveToThisFolder + @"\" + ("MotivatinalQuoteImage" + (i++) + EndOfURL), data);
counter++;
workingURL.Text += x + System.Environment.NewLine;
}
}
else
{
errorURL.Text += (x + System.Environment.NewLine);
}
}
catch (Exception ex)
{
errorURL.Text += ex;
}
}
folderBrowserDialog1.Dispose();
}
So after debugging, I FOUND OUT THAT the mistake is SOMEWHERE between
byte[] data;
using (WebClient client = new WebClient())
{
data = client.DownloadData(x);
File.WriteAllBytes(saveToThisFolder + @"\" + ("MotivatinalQuoteImage" + (i++) + EndOfURL), data);
counter++;
workingURL.Text += x + System.Environment.NewLine;
}
Here is what happened when I waited. After it only downloaded 1 image.
The problem is that this program only LOOPS through ONCE! However, without the code below. The FOR LOOP WORKS PERFECTLY. The code below is the problem.