路径格式错误

时间:2013-04-04 16:25:21

标签: c# asp.net url

我尝试使用以下命令访问localhost上的目录,但错误表明不支持路径格式。

        string fileName=ImageName.ToString() + ".Jpeg";
    bmp.Save(System.IO.Path.Combine("localhost:59657/ProfileTenModified/setP/",  fileName), System.Drawing.Imaging.ImageFormat.Jpeg);

任何解决方案???

1 个答案:

答案 0 :(得分:1)

<。> .net中的IO操作需要文件系统的绝对路径。您无法对具有域名的文件或目录进行操作。所以DJ KRAZE说,而是使用

Server.MapPath("~/ProfileTenModified/setP/" + fileName)