加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

C# FTP 自动创建目录/上传文件

(2014-06-30 18:02:21)
标签:

it

c

目录

路径

文件

分类: C#
  1. //上传文件  
  2. public static Boolean FtpUpload(string ftpPath,string localFile)  
  3.  
  4.     //检查目录是否存在,不存在创建  
  5.     FtpCheckDirectoryExist(ftpPath);  
  6.     FileInfo fi new FileInfo(localFile);  
  7.     FileStream fs fi.OpenRead();  
  8.     long length fs.Length;  
  9.     FtpWebRequest req (FtpWebRequest)WebRequest.Create(ftpServerIP ftpPath fi.Name);  
  10.     req.Credentials new NetworkCredential(ftpUserID, ftpPassword);  
  11.     req.Method WebRequestMethods.Ftp.UploadFile;  
  12.     req.ContentLength length;  
  13.     req.Timeout 10 1000;  
  14.     try  
  15.      
  16.         Stream stream req.GetRequestStream();  
  17.         int BufferLength 2048; //2K     
  18.         byte[] new byte[BufferLength];  
  19.         int i;  
  20.         while ((i fs.Read(b, 0, BufferLength)) 0)  
  21.          
  22.             stream.Write(b, 0, i);  
  23.          
  24.         stream.Close();  
  25.         stream.Dispose();  
  26.      
  27.     catch (Exception e)  
  28.      
  29.         ErrLog(e.Message e.StackTrace);  
  30.         return false 
  31.      
  32.     finally  
  33.      
  34.         fs.Close();  
  35.         req.Abort();  
  36.      
  37.     req.Abort();  
  38.     return true 
  39.  
  40.   
  41. //判断文件的目录是否存,不存则创建  
  42. public static void FtpCheckDirectoryExist(string destFilePath)  
  43.  
  44.     string fullDir FtpParseDirectory(destFilePath);  
  45.     string[] dirs fullDir.Split('/');  
  46.     string curDir "/" 
  47.     for (int 0; dirs.Length; i++)  
  48.      
  49.         string dir dirs[i];  
  50.         //如果是以/开始的路径,第一个为空    
  51.         if (dir != null && dir.Length 0)  
  52.          
  53.             try  
  54.              
  55.                 curDir += dir "/" 
  56.                 FtpMakeDir(curDir);  
  57.              
  58.             catch (Exception)  
  59.             {}  
  60.          
  61.      
  62.  
  63.   
  64. public static string FtpParseDirectory(string destFilePath)  
  65.  
  66.     return destFilePath.Substring(0, destFilePath.LastIndexOf("/"));  
  67.    
  68.   
  69. //创建目录  
  70. public static Boolean FtpMakeDir(string localFile)  
  71.  
  72.     FtpWebRequest req (FtpWebRequest)WebRequest.Create(ftpServerIP localFile);  
  73.     req.Credentials new NetworkCredential(ftpUserID, ftpPassword);  
  74.     req.Method WebRequestMethods.Ftp.MakeDirectory;  
  75.     try  
  76.      
  77.         FtpWebResponse response (FtpWebResponse)req.GetResponse();  
  78.         response.Close();  
  79.      
  80.     catch (Exception)  
  81.      
  82.         req.Abort();  
  83.         return false 
  84.      
  85.     req.Abort();  
  86.     return true 
  87. }  

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有