1. ホーム
  2. R

R言語ダウンロード機能 download.fileとダウンロード解析

2022-02-24 07:26:14

I. download.file関数

download.file(url,destfile,method,quiet=FALSE,mode="w",cacheOK=TRUE,extra=getOption("download.file.extra"))
    url:string,must be http://,https://,ftp://,file://开头
    destfile: the address to save the downloaded file, the default working directory, file is the name of the saved file
    method:provide "internal","wget","curl","lynx","libcurl","wininet".windows Usually internal can solve most of the problems, a few can not get it such as Cygwin, gnuwin32 with "wget", windows binaries with "curl".method for Mac users are to set. "lynx" mainly for historical interest
    quiet:TRUE-disable status messages and display progress bar
    mode:Write file mode, can only be used when method="internal","w"/"wb"(binary)/"a"(append)/"ab"
    cacheOK: whether to accept server-side cached values, for http://,https://使用.FALSE-尝试从站点获取副本,而不是从中间缓存中获取

注意事項

1. method="auto"(デフォルト):windows-wininet(Windowsのみ),ftps://urls-libcurl; for"wget","curl" -対応するプログラムがシステムにインストールされていて実行ファイルの検索パスに位置していなければなりません。

2. method="libcurl"、Windows用をサポート、https:// + ftps://urls、同時ダウンロードをサポート、urlパラメータと

destfile パラメータには、同じ長さの文字のベクトルを指定することができます。

3. method="internal", doesn't follow http:// + https://重定向.method="wininet" supports partial redirection.

4. https://,windows中不支持method="internal" で、method="libcurl" と "wininet" に対応しています。

II.ダウンローダー パッケージダウンロード機能

http、https、ftpを使用して、ファイルをダウンロードします。download.file()関数との唯一の違いは、HTTPSプロトコルの場合、それを動作させるためにいくつかの設定が変更されることです。

windows:"wininet"+"internal"

その他のシステム:"libcurl"+"wget"->"curl"->"lynx"。

R GUIには通常libcurlのメソッドがあります。