大家好,我可以將獲取的路徑中的文件複製到域中,我嘗試如下,但我得到一個異常,因爲uri formats are not supported
..所以有人可以幫助我複製文件將獲取的路徑中的文件複製到域
string filePath = "D:\\Folder\\filename.jpg";
FileInfo fileInfo = new FileInfo(filePath);
if (fileInfo.Exists)
{
path = "http://WWW.somedomain.com";
string temppath = path + "/Temp" + "/" + fileInfo.Name;
if (!File.Exists(temppath))
{
var uri = new Uri(temppath);
File.Copy(filePath, uri.AbsoluteUri);
}
嗨爬完感謝,但我的要求是我從JavaScript調用一個服務,所以這是不行的 – demouser