c# FTP上传文件实例代码(简易版)
程序员文章站
2023-12-19 11:31:28
实例如下:
///
/// 上传ftp服务
///
///
实例如下:
/// <summary> /// 上传ftp服务 /// </summary> /// <param name="path">文件地址</param> /// <returns></returns> public string upload(string path) { var client = new webclient(); client.credentials = new networkcredential("fptuser", "ftppwd");//用户名和密码 client.baseaddress = "ftpurl";//ftp地址 string ftppath = client.baseaddress + "/testfileupload/" + guid.newguid();//上传fptp路径 string returnpath = ""; try { client.uploadfile(ftppath, path); returnpath = ftppath; } catch (exception ex) { ///错误信息处理 } return returnpath; }
以上这篇c# ftp上传文件实例代码(简易版)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。