异常: "URI格式不受支持"

13 浏览
0 Comments

异常: "URI格式不受支持"

我有一个指向本地文件夹的绝对路径: \"file:\\\\C:\\\\Users\\\\john\\\\documents\\\\visual studio 2010\\\\Projects\\\\proj\"

但是当我尝试将其传递给 DirectoryInfo 的构造函数时,会出现“URI格式不受支持”的异常。

我在谷歌和SO上搜索了一下,但是我只看到了远程路径的解决方案,没有本地路径的解决方案。我期望有一种转换方法...

admin 更改状态以发布 2023年5月21日
0
0 Comments

试试这个

ImagePath = "http://localhost/profilepics/abc.png";
   HttpWebRequest request = (HttpWebRequest)WebRequest.Create(ImagePath);
          HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            Stream receiveStream = response.GetResponseStream();

0
0 Comments
string uriPath =
    "file:\\C:\\Users\\john\\documents\\visual studio 2010\\Projects\\proj";
string localPath = new Uri(uriPath).LocalPath;

:这是一个带粗体字的段落,内容为123。

0