我有这个 xml 文件: http: //www.studiovincent.net/list.xml
我需要将整个内容复制到其他 xml 文件中。
我试过这段代码:
string sourcefile = "http://www.studiovincent.net/list.xml";
string destinationfile = "test.xml";
System.IO.File.Copy(sourcefile, destinationfile);
但不起作用,因为我收到此错误:不支持 URI 格式。
我怎么解决这个问题?