C#でURLからファイルをダウンロードする方法


回答:


475
using (var client = new WebClient())
{
    client.DownloadFile("http://example.com/file/song/a.mpeg", "a.mpeg");
}

24
これまでで最高のソリューションですが、1つの重要な行「client.Credentials = new NetworkCredential( "UserName"、 "Password");」を追加したいと思います。
開発者

3
ウェルカムサイドエフェクト:このメソッドは、第1パラメータとしてローカルファイルもサポートします
oo_dev

:MSDNドキュメントではなく、今のHttpClientを使用するように言及しなかったdocs.microsoft.com/en-us/dotnet/api/...
StormsEngineering

WebClientの方がずっと簡単でシンプルなソリューションのように思えますが。
StormsEngineering

1
@ copa017:たとえば、URLがユーザー指定で、C#コードがWebサーバーで実行されている場合、危険なURL。
ハインツィ

177

この名前空間を含める

using System.Net;

非同期でダウンロードし、ProgressBarを配置して、ダウンロードのステータスをUIスレッド自体に表示します。

private void BtnDownload_Click(object sender, RoutedEventArgs e)
{
    using (WebClient wc = new WebClient())
    {
        wc.DownloadProgressChanged += wc_DownloadProgressChanged;
        wc.DownloadFileAsync (
            // Param1 = Link of file
            new System.Uri("http://www.sayka.com/downloads/front_view.jpg"),
            // Param2 = Path to save
            "D:\\Images\\front_view.jpg"
        );
    }
}
// Event to track the progress
void wc_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
    progressBar.Value = e.ProgressPercentage;
}

14
質問は最も簡単な方法を求めます。より複雑にすることは、それを最も単純にすることではありません。
謎解き2015

75
ほとんどの人はダウンロード中にプログレスバーを好みます。だから私はそれを行う最も簡単な方法を書いただけです。これは答えではないかもしれませんが、Stackoverflowの要件を満たしています。それは誰かを助けることです。
Sayka、2015

3
これは、プログレスバーを省略した場合、他の回答と同じくらい簡単です。この回答には名前空間も含まれ、I / Oには非同期を使用します。また、質問は最も単純な方法ではなく、単純な方法を求めています。:)
Josh

私は2つの答えにプログレスバーが1つのシンプルかつ1を与えることが良いことだと思う
ジェシー・デ・ガンズ

@Jessedegansプログレスバーなしで単にダウンロードする方法を示す答えがすでにあります。非同期ダウンロードとプログレス
バーの

76

使用System.Net.WebClient.DownloadFile

string remoteUri = "http://www.contoso.com/library/homepage/images/";
string fileName = "ms-banner.gif", myStringWebResource = null;

// Create a new WebClient instance.
using (WebClient myWebClient = new WebClient())
{
    myStringWebResource = remoteUri + fileName;
    // Download the Web resource and save it into the current filesystem folder.
    myWebClient.DownloadFile(myStringWebResource, fileName);        
}

42
using System.Net;

WebClient webClient = new WebClient();
webClient.DownloadFile("http://mysite.com/myfile.txt", @"c:\myfile.txt");

33
SOへようこそ!一般に、すでに高い回答を得ている既存の質問と古い質問に質の低い回答を投稿することはお勧めできません。
ThiefMaster 2013年

28
私はseanbのコメントから私の答えを見つけましたが、本当に私は他の人よりもこの「低品質」の答えを好みます。完全で(ステートメントを使用)、簡潔で理解しやすいものです。古い質問であることは無関係です、私見。
Josh、

21
しかし、WebClientは使用後に破棄する必要があるため、Usingを使用した方がはるかに良いと思います。を使用して中に入れると、確実に廃棄されます。
Ricardo Polo Jaramillo 2014

5
このコード例では、disposeとは関係ありません...ここのusingステートメントは、使用する名前空間を示しているだけで、WebClientがdisposeの使用に使用されているわけではありません...
cdie

17

ステータスをコンソールに出力しながらファイルをダウンロードするための完全なクラス。

using System;
using System.ComponentModel;
using System.IO;
using System.Net;
using System.Threading;

class FileDownloader
{
    private readonly string _url;
    private readonly string _fullPathWhereToSave;
    private bool _result = false;
    private readonly SemaphoreSlim _semaphore = new SemaphoreSlim(0);

    public FileDownloader(string url, string fullPathWhereToSave)
    {
        if (string.IsNullOrEmpty(url)) throw new ArgumentNullException("url");
        if (string.IsNullOrEmpty(fullPathWhereToSave)) throw new ArgumentNullException("fullPathWhereToSave");

        this._url = url;
        this._fullPathWhereToSave = fullPathWhereToSave;
    }

    public bool StartDownload(int timeout)
    {
        try
        {
            System.IO.Directory.CreateDirectory(Path.GetDirectoryName(_fullPathWhereToSave));

            if (File.Exists(_fullPathWhereToSave))
            {
                File.Delete(_fullPathWhereToSave);
            }
            using (WebClient client = new WebClient())
            {
                var ur = new Uri(_url);
                // client.Credentials = new NetworkCredential("username", "password");
                client.DownloadProgressChanged += WebClientDownloadProgressChanged;
                client.DownloadFileCompleted += WebClientDownloadCompleted;
                Console.WriteLine(@"Downloading file:");
                client.DownloadFileAsync(ur, _fullPathWhereToSave);
                _semaphore.Wait(timeout);
                return _result && File.Exists(_fullPathWhereToSave);
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Was not able to download file!");
            Console.Write(e);
            return false;
        }
        finally
        {
            this._semaphore.Dispose();
        }
    }

    private void WebClientDownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
    {
        Console.Write("\r     -->    {0}%.", e.ProgressPercentage);
    }

    private void WebClientDownloadCompleted(object sender, AsyncCompletedEventArgs args)
    {
        _result = !args.Cancelled;
        if (!_result)
        {
            Console.Write(args.Error.ToString());
        }
        Console.WriteLine(Environment.NewLine + "Download finished!");
        _semaphore.Release();
    }

    public static bool DownloadFile(string url, string fullPathWhereToSave, int timeoutInMilliSec)
    {
        return new FileDownloader(url, fullPathWhereToSave).StartDownload(timeoutInMilliSec);
    }
}

使用法:

static void Main(string[] args)
{
    var success = FileDownloader.DownloadFile(fileUrl, fullPathWhereToSave, timeoutInMilliSec);
    Console.WriteLine("Done  - success: " + success);
    Console.ReadLine();
}

1
SemaphoreSlimこのコンテキストで使用している理由を教えてください。
mmushtaq 2016年

10

これを使ってみてください:

private void downloadFile(string url)
{
     string file = System.IO.Path.GetFileName(url);
     WebClient cln = new WebClient();
     cln.DownloadFile(url, file);
}

ファイルはどこに保存されますか?
IB

ファイルは、実行可能ファイルがある場所に保存されます。フルパスが必要な場合は、フルパスとファイル(ダウンロードするアイテムのファイル名)を使用します
Surendra Shrestha

9

また、WebClientクラスでDownloadFileAsyncメソッドを使用することもできます。指定されたURIのリソースをローカルファイルにダウンロードします。また、このメソッドは呼び出しスレッドをブロックしません。

サンプル:

    webClient.DownloadFileAsync(new Uri("http://www.example.com/file/test.jpg"), "test.jpg");

詳細については:

http://csharpexamples.com/download-files-synchronous-asynchronous-url-c/


8

ネットワークに接続しGetIsNetworkAvailable()ていないときに空のファイルが作成されないようにするために、を使用してネットワーク接続を確認します。

if (System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable())
{
    using (System.Net.WebClient client = new System.Net.WebClient())
    {                        
          client.DownloadFileAsync(new Uri("http://www.examplesite.com/test.txt"),
          "D:\\test.txt");
    }                  
}

私の経験では、偽陽性が多すぎるため、使用しないことをお勧めしGetIsNetworkAvailable()ます。
Cherona

LANなどのコンピュータネットワークに接続している場合を除き、GetIsNetworkAvailable()常に正しく戻ります。このような場合、System.Net.WebClient().OpenRead(Uri)メソッドを使用して、デフォルトのURLが指定されたときにメソッドが戻るかどうかを確認できます。WebClient.OpenRead()を
haZya

2

以下のコードには、元の名前のダウンロードファイルのロジックが含まれています

private string DownloadFile(string url)
    {

        HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
        string filename = "";
        string destinationpath = Environment;
        if (!Directory.Exists(destinationpath))
        {
            Directory.CreateDirectory(destinationpath);
        }
        using (HttpWebResponse response = (HttpWebResponse)request.GetResponseAsync().Result)
        {
            string path = response.Headers["Content-Disposition"];
            if (string.IsNullOrWhiteSpace(path))
            {
                var uri = new Uri(url);
                filename = Path.GetFileName(uri.LocalPath);
            }
            else
            {
                ContentDisposition contentDisposition = new ContentDisposition(path);
                filename = contentDisposition.FileName;

            }

            var responseStream = response.GetResponseStream();
            using (var fileStream = File.Create(System.IO.Path.Combine(destinationpath, filename)))
            {
                responseStream.CopyTo(fileStream);
            }
        }

        return Path.Combine(destinationpath, filename);
    }

1

リクエストを行う前に、ファイルのダウンロード中にステータスを確認してProgressBarを更新するか、認証情報を使用する必要がある場合があります。

これが、これらのオプションをカバーする例です。ラムダ表記文字列補間が使用されています:

using System.Net;
// ...

using (WebClient client = new WebClient()) {
    Uri ur = new Uri("http://remotehost.do/images/img.jpg");

    //client.Credentials = new NetworkCredential("username", "password");
    String credentials = Convert.ToBase64String(Encoding.ASCII.GetBytes("Username" + ":" + "MyNewPassword"));
    client.Headers[HttpRequestHeader.Authorization] = $"Basic {credentials}";

    client.DownloadProgressChanged += (o, e) =>
    {
        Console.WriteLine($"Download status: {e.ProgressPercentage}%.");

        // updating the UI
        Dispatcher.Invoke(() => {
            progressBar.Value = e.ProgressPercentage;
        });
    };

    client.DownloadDataCompleted += (o, e) => 
    {
        Console.WriteLine("Download finished!");
    };

    client.DownloadFileAsync(ur, @"C:\path\newImage.jpg");
}

1

私の調査によると、それWebClient.DownloadFileAsyncがファイルをダウンロードする最良の方法であることがわかりました。System.Net名前空間で利用可能で、.netコアもサポートしています。

ファイルをダウンロードするためのサンプルコードを次に示します。

using System;
using System.IO;
using System.Net;
using System.ComponentModel;

public class Program
{
    public static void Main()
    {
        new Program().Download("ftp://localhost/test.zip");
    }
    public void Download(string remoteUri)
    {
        string FilePath = Directory.GetCurrentDirectory() + "/tepdownload/" + Path.GetFileName(remoteUri); // path where download file to be saved, with filename, here I have taken file name from supplied remote url
        using (WebClient client = new WebClient())
        {
            try
            {
                if (!Directory.Exists("tepdownload"))
                {
                    Directory.CreateDirectory("tepdownload");
                }
                Uri uri = new Uri(remoteUri);
                //password username of your file server eg. ftp username and password
                client.Credentials = new NetworkCredential("username", "password");
                //delegate method, which will be called after file download has been complete.
                client.DownloadFileCompleted += new AsyncCompletedEventHandler(Extract);
                //delegate method for progress notification handler.
                client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgessChanged);
                // uri is the remote url where filed needs to be downloaded, and FilePath is the location where file to be saved
                client.DownloadFileAsync(uri, FilePath);
            }
            catch (Exception)
            {
                throw;
            }
        }
    }
    public void Extract(object sender, AsyncCompletedEventArgs e)
    {
        Console.WriteLine("File has been downloaded.");
    }
    public void ProgessChanged(object sender, DownloadProgressChangedEventArgs e)
    {
        Console.WriteLine($"Download status: {e.ProgressPercentage}%.");
    }
}

上記でコードファイルが中にダウンロードされます tepdownload、プロジェクトのディレクトリのフォルダます。上記のコードの機能を理解するには、コード内のコメントをお読みください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.