File.Copy 与 url c#

发布于 2024-11-28 23:47:19 字数 200 浏览 0 评论 0原文

可以在 C# 的 File.Copy 中使用两个 url 吗?我收到不同的错误:

  1. 不支持 URI 格式

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

有一个类似的问题但没有得到解答。

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

谢谢

It´s possible to use two urls with File.Copy with C#? I´m getting different errors :

  1. URI formats are not supported

  2. The given path's format is not supported.

There is a question some similar but is not answered.

I want copy from a directory that is in server1 to another server and the urls are http

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

﹉夏雨初晴づ 2024-12-05 23:47:19

仅当我们讨论的不是 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);
}

source:

使用 C# 通过 HTTP POST 发送文件

you can use File.Copy only if we are not talking about an FTP. in that case you can use the code below

if you have an FTP you can use the below code:

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();  
}

then you can do

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

if we are talking about a shared folder on the same network you can do the below:

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

for HTTP you can use the below:

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

source:

Send a file via HTTP POST with C#

寻梦旅人 2024-12-05 23:47:19

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

如果你的意思是http url,这是不可能的。

Look here:
http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx

If you mean http urls it is not possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文