查看图像时不支持给定路径的格式

时间:2015-09-04 02:49:23

标签: c# picturebox

我在查看文件夹路径中的图片时遇到问题。我不知道如何解决这个问题。我试过用

我的代码

String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";

picturebox_view.Image = Image.FromFile("'" + Path + "'");

我收到以下错误

The Given Path's Format Is Not Supported...

当我尝试调试并检查“路径”的值时,看起来它的错误。结果就是这个

String Path = "C:\\Users\\PC\\Documents\\Visual Studio 2012\\...";

我尝试使用带有替换参数的Path2,但它似乎不适用于我。

这是我的替换代码(不工作)

String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";

String Path2 = Path.Replace(@"\\", @"\");
picturebox_view.Image = Image.FromFile("'" + Path2 + "'");

先谢谢我的同事们。

1 个答案:

答案 0 :(得分:5)

您看到调试器显示的是C#字符串文字。字符串实际上没有双斜线。

您真正的问题是没有'C:驱动器。不要在路径上加上引号。