File.Copy 与 url c#
可以在 C# 的 File.Copy 中使用两个 url 吗?我收到不同的错误:
不支持 URI 格式
不支持给定路径的格式。
有一个类似的问题但没有得到解答。
我想从 server1 中的目录复制到另一台服务器,并且 url 是 http
谢谢
It´s possible to use two urls with File.Copy with C#? I´m getting different errors :
URI formats are not supported
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅当我们讨论的不是 FTP 时,才可以使用 File.Copy。在这种情况下,您可以使用下面的代码
如果您有 FTP,您可以使用下面的代码:
那么您可以这样做
如果我们谈论的是同一网络上的共享文件夹,您可以执行以下操作:
对于 HTTP,您可以使用以下代码:
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:
then you can do
if we are talking about a shared folder on the same network you can do the below:
for HTTP you can use the below:
source:
Send a file via HTTP POST with C#
看这里:
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.