0

我尝试使用以下内容访问本地主机上的目录,但错误提示不支持路径格式。

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

有什么解决办法???

4

1 回答 1

1

.net 中的 IO 操作需要文件系统的绝对路径。不能对带有域名的文件或目录进行操作。所以正如 DJ KRAZE 所说,改为使用

Server.MapPath("~/ProfileTenModified/setP/" + fileName)
于 2013-04-04T16:31:36.547 回答