其他分享
首页 > 其他分享> > 使用FtpWebRequest上传文件时覆盖已经存在的源文件

使用FtpWebRequest上传文件时覆盖已经存在的源文件

作者:互联网

对于FTP操作不是很熟悉,今天做了个FTP上传,本来打算对已经上传的文件做个判断,如果文件存在则删掉源文件,重新创建文件,如果文件不存在,则创建文件。

后来发现,FTP有个命令STOR,功能:向服务器传送文件,如果文件存在,则覆盖源文件,否则创建文件。

在C#中

FtpWebRequest request = (FtpWebRequest)WebRequest.Create(url);
request.Credentials = new NetworkCredential(this.userId, this.password);
request.Method = WebRequestMethods.Ftp.UploadFile ;

其中,WebRequestMethods.Ftp.UploadFile 

表示将文件上载到 FTP 服务器的 FTP STOR 协议方法。 

转载于:https://www.cnblogs.com/xl0715/archive/2012/06/25/2562863.html

标签:文件,FtpWebRequest,FTP,request,源文件,上传
来源: https://blog.csdn.net/weixin_34414650/article/details/94023491