FileNotFoundException但文件在那里

时间:2013-03-14 07:12:24

标签: c# image file

没什么可解释的,因为我没有合理解释为什么这不起作用:s enter image description here

只是为了确认,这是一个'jpeg'文件扩展,名称是正确的,我没有看到任何其他问题,为什么它不起作用。

1 个答案:

答案 0 :(得分:6)

您将其保存为以“jpg”结尾的文件名,然后从以“jpeg”结尾的文件名中加载。假设您正在尝试加载刚刚保存的文件,那就是问题所在。

(我会复制代码以指出相关的行,但您只将其作为图像包含在内...)

我强烈建议构建文件名一次,并使用该变量两次:

// I prefer using Path.Combine over string concatenation, but both will work.
// You might want to change "Identitys" to "Identities" though :)
string file = Path.Combine(@"C:\", "SimpleSkype", "Identitys", dd + ".jpg");
SaveSkypeAvatarToDisk(u.Handle, file);
using (Image image = Image.FromFile(file))
{
    ...
}