[C#] WebClient 를 이용해서 WebServer에 파일 업로드하기

sourceFilePath = "업로드할 파일 경로 및 이름";

WebClient client = new WebClient();
client.Credentials = CredentialCache.DefaultCredentials;
client.UploadFile(@"URL 주소 ", "POST", sourceFilePath);
client.Dispose();
이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다