for (int counter = 0; counter <= temparray.Length - 1; counter = counter + 1)
{
if ((counter < temparray.Length + 2) && (temparray[counter] == "><img") && (temparray[counter + 1] == "id='header-img'"))
{
string j = temparray[counter + 2];
int startIndex = j.IndexOf('"') + 1;
int length = j.IndexOf('"', startIndex) - startIndex;
string jj = (j.Substring(startIndex, length));
client.DownloadFile(jj, @"C:\image.png");
}
}
という文字列として保存されている画像の URL を取得しますが、jj
それを任意のフォルダーに保存しようとしても成功しません。