// 判斷 temp.txt 檔案是否存在 string FileName = "temp.txt"; if (System.IO.File.Exists(FileName)) { MessageBox.Show(FileName + " 檔案存在"); } else { MessageBox.Show(FileName + " 檔案不存在"); }