1. 程式人生 > >C# 判斷 檔案路徑/檔案 是否存在

C# 判斷 檔案路徑/檔案 是否存在

1.檔案路徑是否存在

  if (!Directory.Exists(@KeyLog))
 {
                Directory.CreateDirectory(@KeyLog);
 }

2.檔案是否存在

 if (File.Exists(filePath))
 {

}