带有网址的File.Copy c#

时间:2011-08-10 10:37:54

标签: c# c#-4.0 copy

使用C#的File.Copy可以使用两个网址吗?我得到了不同的错误:

  1. 不支持URI格式

  2. 不支持给定路径的格式。

  3. 有一个类似的问题,但没有回答。

    我希望从server1中的目录复制到另一台服务器,并且URL是http

    由于

2 个答案:

答案 0 :(得分:9)

只有在我们不讨论FTP时才能使用File.Copy。在这种情况下,您可以使用下面的代码

如果您有FTP,可以使用以下代码:

public void ftpfile(string ftpfilepath, string inputfilepath)  
{  
    string ftphost = "127.0.0.1";  
    //here correct hostname or IP of the ftp server to be given  

    string ftpfullpath = "ftp://" + ftphost + ftpfilepath;  
    FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(ftpfullpath);  
    ftp.Credentials = new NetworkCredential("userid", "password");  
    //userid and password for the ftp server to given  

    ftp.KeepAlive = true;  
    ftp.UseBinary = true;  
    ftp.Method = WebRequestMethods.Ftp.UploadFile;  
    FileStream fs = File.OpenRead(inputfilepath);  
    byte[] buffer = new byte[fs.Length];  
    fs.Read(buffer, 0, buffer.Length);  
    fs.Close();  
    Stream ftpstream = ftp.GetRequestStream();  
    ftpstream.Write(buffer, 0, buffer.Length);  
    ftpstream.Close();  
}

然后你可以做

ftpfile(@"/testfolder/testfile.xml", @"c:\testfile.xml");

如果我们在谈论同一网络上的共享文件夹,您可以执行以下操作:

File.Copy(filepath, "\\\\192.168.1.28\\Files");

对于HTTP,您可以使用以下内容:

using(WebClient client = new WebClient()) {
    client.UploadFile(address, filePath);
}

源:

Send a file via HTTP POST with C#

答案 1 :(得分:-1)

看这里: http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx

如果您指的是http网址,则无法使用。