科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道在C#中应用PSFTP实现SFTP上传 5

在C#中应用PSFTP实现SFTP上传 5

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

foreach(object file in this

作者:中国IT实验室 来源:中国IT实验室 2007年9月10日

关键字: 应用 C# 编程

  • 评论
  • 分享微博
  • 分享邮件
  

 

   foreach(object file in this.m_UploadFiles)

   ...{

   sbdScript.Append("put " + (string)file + Environment.NewLine);

   }

  

   //Close the session

   sbdScript.Append("quit");

   //Save the Script to templocation

   scriptLocation = this.m_TempLocation + @"" + System.Guid.NewGuid().ToString() + ".scr";

  

   try

   ...{

   fileStream = new StreamWriter(scriptLocation);

   fileStream.Write(sbdScript.ToString());

   fileStream.Close();

   }

   catch(Exception ex)

   ...{

   fileStream = null;

   throw new Exception("Error occured during create script file!",ex);

   }

   return scriptLocation;

  }

  #endregion 

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章