File.Exists()始终返回false

时间:2014-02-25 15:35:24

标签: c#

这是我的代码(.Net 4):

 string dName = textBox1.Text + ".db";
 string fExist = @"C:\word_app\" + dName;
 if (!File.Exists(fExist))
 {
   MessageBox.Show("file doesnt exist");
 }

即使我在该位置有该文件,也会显示此消息框。enter image description here

1 个答案:

答案 0 :(得分:4)

你只需纠正你的道路(它的话不是单词)

string dName = textBox1.Text + ".db";
string fExist = @"C:\words_app\" + dName;
if (!File.Exists(fExist))
{
  MessageBox.Show("file doesnt exist");
}