写一个ftp批处理:ftpfile.bat
执行:
using System.Diagnostics ;
Process p=new Process ();
ProcessStartInfo psi=new ProcessStartInfo("ftpfile.bat");
psi.UseShellExecute =false
p.StartInfo =psi;
p.Start ();

解决方案 »

  1.   

    you should use a .NET FTP component instead, for example,
    C# FTP Client Library
    http://www.enterprisedt.com/downloads/csftp/csftp.html
      

  2.   

    http://expert.csdn.net/Expert/topic/1873/1873585.xml?temp=8.556545E-03
    或许这个能够帮上你.
    hope it heps
      

  3.   

    我觉得,直接通过ftP://uid:pass@host/path/filename引用改文件。应该可以的。我曾经直接读取http的文件
    --------------------------------------
    Chen Zizhαo
    NEHC at TOM dot COM