摘要: 1 private void button2_Click(object sender, EventArgs e) 2 { 3 if (File.Exists(@"E:\exists.txt")) 4 { 5 MessageBox.Show("文件存在"); 6 } 7 else 8 { 9 MessageBox.Show("无此文件");10 }11 ... 阅读全文
posted @ 2014-02-16 11:10 mmgx 阅读(80465) 评论(0) 推荐(3) 编辑