我在查看文件夹路径中的图片时遇到问题。我不知道如何解决这个问题。我试过用
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 + "'");
先谢谢我的同事们。
答案 0 :(得分:5)
您看到调试器显示的是C#字符串文字。字符串实际上没有双斜线。
您真正的问题是没有'C:
驱动器。不要在路径上加上引号。