Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用以下内容访问本地主机上的目录,但错误提示不支持路径格式。
string fileName=ImageName.ToString() + ".Jpeg"; bmp.Save(System.IO.Path.Combine("localhost:59657/ProfileTenModified/setP/", fileName), System.Drawing.Imaging.ImageFormat.Jpeg);
有什么解决办法???
.net 中的 IO 操作需要文件系统的绝对路径。不能对带有域名的文件或目录进行操作。所以正如 DJ KRAZE 所说,改为使用
Server.MapPath("~/ProfileTenModified/setP/" + fileName)