C#判斷目錄和文件是否存在,不存在則創(chuàng)建
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
1、判斷文件夾是否存在 //spath:文件夾路徑名 using System.IO; if (Directory.Exists(spath)) {
} else { DirectoryInfo directoryInfo = new DirectoryInfo(spath); directoryInfo.Create(); } 2、判斷文件是否存在 // filePath 文件路徑名 if (!File.Exists(filePath)) { //MessageBox.Show(filePath + " not exists!"); FileStream fs = File.Create(filePath);//創(chuàng)建文件 fs.Close(); return ; } else { MessageBox.Show(filePath + " exists!"); //執(zhí)行讀寫操作 } 該文章在 2023/12/27 22:05:46 編輯過 |
關鍵字查詢
相關文章
正在查詢... |