WebClient.DownloadFile 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 URI가 있는 리소스를 로컬 파일에 다운로드합니다.
오버로드
DownloadFile(Uri, String) |
지정된 URI가 있는 리소스를 로컬 파일에 다운로드합니다. |
DownloadFile(String, String) |
지정된 URI가 있는 리소스를 로컬 파일에 다운로드합니다. |
DownloadFile(Uri, String)
- Source:
- WebClient.cs
- Source:
- WebClient.cs
- Source:
- WebClient.cs
지정된 URI가 있는 리소스를 로컬 파일에 다운로드합니다.
public:
void DownloadFile(Uri ^ address, System::String ^ fileName);
public void DownloadFile (Uri address, string fileName);
member this.DownloadFile : Uri * string -> unit
Public Sub DownloadFile (address As Uri, fileName As String)
매개 변수
- fileName
- String
데이터를 받을 로컬 파일의 이름입니다.
예외
BaseAddress 및 address
결합하여 형성된 URI가 잘못되었습니다.
-또는-
filename
null
또는 Empty.
-또는-
파일이 없습니다.
-또는-
데이터를 다운로드하는 동안 오류가 발생했습니다.
이 메서드는 여러 스레드에서 동시에 호출되었습니다.
설명
주의
WebRequest
, HttpWebRequest
, ServicePoint
및 WebClient
사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.
DownloadFile 메서드는 address
매개 변수에 지정된 URI에서 로컬 파일 데이터로 다운로드합니다. 이 메서드는 리소스를 다운로드하는 동안 차단합니다. 리소스를 다운로드하고 서버의 응답을 기다리는 동안 계속 실행하려면 DownloadFileAsync 방법 중 하나를 사용합니다.
BaseAddress 속성이 빈 문자열("")이 아니고 address
절대 URI를 포함하지 않는 경우 address
요청된 데이터의 절대 URI를 형성하기 위해 BaseAddress 결합된 상대 URI여야 합니다.
QueryString 속성이 빈 문자열이 아니면 address
추가됩니다.
이 메서드는 RETR 명령을 사용하여 FTP 리소스를 다운로드합니다. HTTP 리소스의 경우 GET 메서드가 사용됩니다.
메모
이 멤버는 애플리케이션에서 네트워크 추적을 사용하도록 설정할 때 추적 정보를 출력합니다. 자세한 내용은 .NET Framework
ASP.NET 페이지와 같은 중간 계층 애플리케이션에서 이 메서드를 사용하는 경우 애플리케이션이 실행되는 계정에 파일에 액세스할 수 있는 권한이 없는 경우 오류가 발생합니다.
적용 대상
DownloadFile(String, String)
- Source:
- WebClient.cs
- Source:
- WebClient.cs
- Source:
- WebClient.cs
지정된 URI가 있는 리소스를 로컬 파일에 다운로드합니다.
public:
void DownloadFile(System::String ^ address, System::String ^ fileName);
public void DownloadFile (string address, string fileName);
member this.DownloadFile : string * string -> unit
Public Sub DownloadFile (address As String, fileName As String)
매개 변수
- address
- String
데이터를 다운로드할 URI입니다.
- fileName
- String
데이터를 받을 로컬 파일의 이름입니다.
예외
address
매개 변수가 null
.
BaseAddress 및 address
결합하여 형성된 URI가 잘못되었습니다.
-또는-
filename
null
또는 Empty.
-또는-
파일이 없습니다.
-또는- 데이터를 다운로드하는 동안 오류가 발생했습니다.
이 메서드는 여러 스레드에서 동시에 호출되었습니다.
예제
다음 코드 예제에서는 로컬 하드 드라이브에 http://www.contoso.com 파일을 다운로드합니다.
String^ remoteUri = "http://www.contoso.com/library/homepage/images/";
String^ fileName = "ms-banner.gif", ^myStringWebResource = nullptr;
// Create a new WebClient instance.
WebClient^ myWebClient = gcnew WebClient;
// Concatenate the domain with the Web resource filename.
myStringWebResource = String::Concat( remoteUri, fileName );
Console::WriteLine( "Downloading File \"{0}\" from \"{1}\" .......\n\n", fileName, myStringWebResource );
// Download the Web resource and save it into the current filesystem folder.
myWebClient->DownloadFile( myStringWebResource, fileName );
Console::WriteLine( "Successfully Downloaded File \"{0}\" from \"{1}\"", fileName, myStringWebResource );
Console::WriteLine( "\nDownloaded file saved in the following file system folder:\n\t {0}", Application::StartupPath );
string remoteUri = "http://www.contoso.com/library/homepage/images/";
string fileName = "ms-banner.gif", myStringWebResource = null;
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
// Concatenate the domain with the Web resource filename.
myStringWebResource = remoteUri + fileName;
Console.WriteLine("Downloading File \"{0}\" from \"{1}\" .......\n\n", fileName, myStringWebResource);
// Download the Web resource and save it into the current filesystem folder.
myWebClient.DownloadFile(myStringWebResource,fileName);
Console.WriteLine("Successfully Downloaded File \"{0}\" from \"{1}\"", fileName, myStringWebResource);
Console.WriteLine("\nDownloaded file saved in the following file system folder:\n\t" + Application.StartupPath);
Dim remoteUri As String = "http://www.contoso.com/library/homepage/images/"
Dim fileName As String = "ms-banner.gif"
Dim myStringWebResource As String = Nothing
' Create a new WebClient instance.
Dim myWebClient As New WebClient()
' Concatenate the domain with the Web resource filename. Because DownloadFile
'requires a fully qualified resource name, concatenate the domain with the Web resource file name.
myStringWebResource = remoteUri + fileName
Console.WriteLine("Downloading File ""{0}"" from ""{1}"" ......." + ControlChars.Cr + ControlChars.Cr, fileName, myStringWebResource)
' The DownloadFile() method downloads the Web resource and saves it into the current file-system folder.
myWebClient.DownloadFile(myStringWebResource, fileName)
Console.WriteLine("Successfully Downloaded file ""{0}"" from ""{1}""", fileName, myStringWebResource)
Console.WriteLine((ControlChars.Cr + "Downloaded file saved in the following file system folder:" + ControlChars.Cr + ControlChars.Tab + Application.StartupPath))
설명
주의
WebRequest
, HttpWebRequest
, ServicePoint
및 WebClient
사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.
DownloadFile 메서드는 address
매개 변수에 지정된 URI에서 로컬 파일 데이터로 다운로드합니다. 이 메서드는 리소스를 다운로드하는 동안 차단합니다. 리소스를 다운로드하고 서버의 응답을 기다리는 동안 계속 실행하려면 DownloadFileAsync 방법 중 하나를 사용합니다.
BaseAddress 속성이 빈 문자열("")이 아니고 address
절대 URI를 포함하지 않는 경우 address
요청된 데이터의 절대 URI를 형성하기 위해 BaseAddress 결합된 상대 URI여야 합니다.
QueryString 속성이 빈 문자열이 아니면 address
추가됩니다.
이 메서드는 RETR 명령을 사용하여 FTP 리소스를 다운로드합니다. HTTP 리소스의 경우 GET 메서드가 사용됩니다.
메모
이 멤버는 애플리케이션에서 네트워크 추적을 사용하도록 설정할 때 추적 정보를 출력합니다. 자세한 내용은 .NET Framework
ASP.NET 페이지와 같은 중간 계층 애플리케이션에서 이 메서드를 사용하는 경우 애플리케이션이 실행되는 계정에 파일에 액세스할 수 있는 권한이 없는 경우 오류가 발생합니다.
적용 대상
.NET