-1

Bing の API を使用して画像を検索およびダウンロードするアプリに取り組んでいます。Bing の API は一連の画像リンクを提供し、それらを繰り返し処理して、それぞれをダウンロードします。

私が抱えている問題は、ダウンロードしたファイルのサイズが 0Kb になることがあるということです。WebClient が最初にファイル名を作成し、次にそれに書き込もうとするために発生すると思います。そのため、何らかの理由で書き込みができない場合に、これが発生します。問題は、例外をスローせずに発生するため、「Catch」ステートメントでこれをキャッチしてファイルを削除できないことです。

public void imageFetcher(string performerName, int maxNumberOfImages, RichTextBox richTextBox)
    {
        string performersDirPath = Environment.CurrentDirectory + @"\Performers\";
        string performerPath = performersDirPath + performerName + @"\";

        if (!Directory.Exists(performersDirPath))
        {
            Directory.CreateDirectory(performersDirPath);
        }

        if (!Directory.Exists(performerPath))
        {
            Directory.CreateDirectory(performerPath);
        }

        // Searching for Images using bing api
        IEnumerable<Bing.ImageResult> bingSearch = bingImageSearch(performerName);

        int i = 0;

            foreach (var result in bingSearch)
            {
                downloadImage(result.MediaUrl, performerPath + performerName + i + ".jpg",richTextBox);
                i++;
                if (i == maxNumberOfImages)
                {
                    break;
                }
            }
    }

ダウンロード方法:

public void downloadImage(string imgUrl, string saveDestination, RichTextBox richTextBox)
    {
        if (File.Exists(saveDestination))
        {
            richTextBox.ForeColor = System.Drawing.Color.Red;
            richTextBox.AppendText("The File: " + saveDestination + "Already exists");

        }
        else
        {
            try
            {
                using (WebClient client = new WebClient())
                    {

                    client.DownloadFileCompleted += new AsyncCompletedEventHandler(((sender, e) => downloadFinished(sender, e, saveDestination , richTextBox)));
                    Uri imgURI = new Uri(imgUrl, UriKind.Absolute);

                    client.DownloadFileAsync(imgURI, saveDestination);
                    }
            }
            catch (Exception e)
            {
                richTextBox.AppendText("There was an exception downloading the file" + imgUrl);
                richTextBox.AppendText("Deleteing" + saveDestination);
                File.Delete(saveDestination);
                richTextBox.AppendText("File deleted!");

            }

        }

    }

これは、クライアントが使用を終了するのを待っているときにも発生します。

client.DownloadFileAsync(imgURI, saveDestination);

                        while (client.IsBusy)
                        {

                        }

誰が私が間違っているのか教えてもらえますか?

他の同様の質問では、解決策は、ダウンロードが完了するまで Webclient インスタンスを開いたままにすることでした..私はこのループでこれを行っています:

while (client.IsBusy){}

それでも結果は同じです。

更新: webclient を使用しないことにしました。代わりに、次のコードを使用しました。

try
                        {
                            byte[] lnBuffer;
                            byte[] lnFile;

                            using (BinaryReader lxBR = new BinaryReader(stream))
                            {
                                using (MemoryStream lxMS = new MemoryStream())
                                {
                                    lnBuffer = lxBR.ReadBytes(1024);
                                    while (lnBuffer.Length > 0)
                                    {
                                        lxMS.Write(lnBuffer, 0, lnBuffer.Length);
                                        lnBuffer = lxBR.ReadBytes(1024);
                                    }
                                    lnFile = new byte[(int)lxMS.Length];
                                    lxMS.Position = 0;
                                    lxMS.Read(lnFile, 0, lnFile.Length);
                                }

using (System.IO.FileStream lxFS = new FileStream(saveDestination, FileMode.Create))
                                    {

                                        lxFS.Write(lnFile, 0, lnFile.Length);
                                    }

これにより、問題はほぼ完全に解決されます。まだ 0KB のファイルが 1 つか 2 つ残っていますが、ネットワーク エラーが原因だと思います。

4

1 に答える 1