使用C#WebClient类访问(上传/下载/删除/列出文件目录)
2021-06-21 07:06
标签:bytes ... 命名空间 属性 eth 程序 class foreach 对象 在使用WebClient类之前,必须先引用System.Net命名空间,文件下载、上传与删除的都是使用异步编程,也可以使用同步编程, 这里以异步编程为例: 1)文件下载: 2)文件上传: 3)文件删除: 4)列出文件(或目录): 需引入命名空间:System.IO、System.Xml及System.Globalization 使用C#WebClient类访问(上传/下载/删除/列出文件目录) 标签:bytes ... 命名空间 属性 eth 程序 class foreach 对象 原文地址:https://www.cnblogs.com/lgx5/p/10242560.html static void Main(string[] args)
{
//定义_webClient对象
WebClient _webClient = new WebClient();
//使用默认的凭据——读取的时候,只需默认凭据就可以
_webClient.Credentials = CredentialCache.DefaultCredentials;
//下载的链接地址(文件服务器)
Uri _uri = new Uri(@"http://192.168.1.103");
//注册下载进度事件通知
_webClient.DownloadProgressChanged += _webClient_DownloadProgressChanged;
//注册下载完成事件通知
_webClient.DownloadFileCompleted += _webClient_DownloadFileCompleted;
//异步下载到D盘
_webClient.DownloadFileAsync(_uri, @"D:\test.xlsx");
Console.ReadKey();
}
//下载完成事件处理程序
private static void _webClient_DownloadFileCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
{
Console.WriteLine("Download Completed...");
}
//下载进度事件处理程序
private static void _webClient_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
Console.WriteLine($"{e.ProgressPercentage}:{e.BytesReceived}/{e.TotalBytesToReceive}");
}
static void Main(string[] args)
{
//定义_webClient对象
WebClient _webClient = new WebClient();
//使用Windows登录方式
_webClient.Credentials = new NetworkCredential("test", "123");
//上传的链接地址(文件服务器)
Uri _uri = new Uri(@"http://192.168.1.103/test.doc");
//注册上传进度事件通知
_webClient.UploadProgressChanged += _webClient_UploadProgressChanged;
//注册上传完成事件通知
_webClient.UploadFileCompleted += _webClient_UploadFileCompleted;
//异步从D盘上传文件到服务器
_webClient.UploadFileAsync(_uri, "PUT", @"D:\test.doc");
Console.ReadKey();
}
//下载完成事件处理程序
private static void _webClient_UploadFileCompleted(object sender, UploadFileCompletedEventArgs e)
{
Console.WriteLine("Upload Completed...");
}
//下载进度事件处理程序
private static void _webClient_UploadProgressChanged(object sender, UploadProgressChangedEventArgs e)
{
Console.WriteLine($"{e.ProgressPercentage}:{e.BytesSent}/{e.TotalBytesToSend}");
}
static void Main(string[] args)
{
//定义_webClient对象
WebClient _webClient = new WebClient();
//使用Windows登录方式
_webClient.Credentials = new NetworkCredential("test", "123");
//上传的链接地址(文件服务器)
Uri _uri = new Uri(@"http://192.168.1.103/test.doc");
//注册删除完成时的事件(模拟删除)
_webClient.UploadDataCompleted += _webClient_UploadDataCompleted;
//异步从文件(模拟)删除文件
_webClient.UploadDataAsync(_uri, "DELETE", new byte[0]);
Console.ReadKey();
}
//删除完成事件处理程序
private static void _webClient_UploadDataCompleted(object sender, UploadDataCompletedEventArgs e)
{
Console.WriteLine("Deleted...");
}
static void Main(string[] args)
{
SortedList
上一篇:C#中??的使用
文章标题:使用C#WebClient类访问(上传/下载/删除/列出文件目录)
文章链接:http://soscw.com/index.php/essay/96795.html