这是我的代码(.Net 4):
string dName = textBox1.Text + ".db";
string fExist = @"C:\word_app\" + dName;
if (!File.Exists(fExist))
{
MessageBox.Show("file doesnt exist");
}
即使我在该位置有该文件,也会显示此消息框。
答案 0 :(得分:4)
你只需纠正你的道路(它的话不是单词)
string dName = textBox1.Text + ".db";
string fExist = @"C:\words_app\" + dName;
if (!File.Exists(fExist))
{
MessageBox.Show("file doesnt exist");
}