代码如下:
![asp.net 操作ftp 通用代码[测试通过]](https://blog.quwenai.cn/zb_users/upload/2022/03/20220326190033164829243387079.gif)
代码// 建立目录
FtpWebRequest Request = (FtpWebRequest)WebRequest.Create( " ftp://113.107.160.135:2121/vadmin.uuu9.com/aaa " );
Request.Credentials = new NetworkCredential( " wanglei " , @" }}XnJXt4a\7datr " );
Request.Method = WebRequestMethods.Ftp.MakeDirectory;
Request.Timeout = ( 60000 * 1 ); // 60000 * 1,表示1分鐘
FtpWebResponse Response = (FtpWebResponse)Request.GetResponse();
Response.Close();
// 修改檔案名稱
FtpWebRequest Request = (FtpWebRequest)WebRequest.Create( " ftp://111.11.11.11:1234/C/puma/ssa.txt " );
Request.Credentials = new NetworkCredential( " id " , " pwd " );
Request.Method = WebRequestMethods.Ftp.Rename;
Request.Timeout = ( 60000 * 1 ); // 60000 * 1,表示1分鐘
Request.RenameTo = " NewName.txt " ;
FtpWebResponse Response = (FtpWebResponse)Request.GetResponse();
Response.Close();
// 修改目錄名稱
FtpWebRequest Request = (FtpWebRequest)WebRequest.Create( " ftp://111.11.11.11:1234/C/puma/test " );
Request.Credentials = new NetworkCredential( " id " , " pwd " );
Request.Method = WebRequestMethods.Ftp.Rename;
Request.Timeout = ( 60000 * 1 ); // 60000 * 1,表示1分鐘
Request.RenameTo = " test2 " ;
FtpWebResponse Response = (FtpWebResponse)Request.GetResponse();
Response.Close();
// 移除檔案
FtpWebRequest Request = (FtpWebRequest)WebRequest.Create( " ftp://111.11.11.11:1234/C/puma/NewName.txt " );
Request.Credentials = new NetworkCredential( " id " , " pwd " );
Request.Method = WebRequestMethods.Ftp.DeleteFile;
Request.Timeout = ( 60000 * 1 ); // 60000 * 1,表示1分鐘
FtpWebResponse Response = (FtpWebResponse)Request.GetResponse();
Response.Close();
// 移除目錄
FtpWebRequest Request = (FtpWebRequest)WebRequest.Create( " ftp://111.11.11.11:1234/C/puma/test2 " );
Request.Credentials = new NetworkCredential( " id " , " pwd " );
Request.Method = WebRequestMethods.Ftp.RemoveDirectory;
Request.Timeout = ( 60000 * 1 ); // 60000 * 1,表示1分鐘
FtpWebResponse Response = (FtpWebResponse)Request.GetResponse();
Response.Close();
本文标题:asp.net 操作ftp 通用代码[测试通过]
本文链接:https://blog.quwenai.cn/post/5218.html
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。






还没有评论,来说两句吧...