---恢復內容開始---
1,獲取程序的基目錄
string path = Aain.CurrentDomain.BaseDirectory;
2,獲取指定目錄下的所有文件
var files = from f in Directory.EnumerateFiles(@"D:\MyProjects\Test\") select f;
3,在“2”的基礎上對文件集操作
foreach (var file in files) { string fileName = Path.GetFileName(file); }
4,判斷是否存在此文件夾,沒有就新建一個
string filePath= AppDomain.CurrentDomain.BaseDirectory + @"text\folername"; if (!Directory.Exists(filePath)) { Directory.CreateDirectory(filePath); }
5,判斷此文件是否存在,沒有就新建
string filename=@"D:\test.txt"; if (System.IO.File.Exists(filename)) return false; else { System.IO.File.Create(filename).Close(); return true; }
6,刪除文本文件
System.IO.File.Delete("D:\test.txt");