.net中用到的一些方法

 

 

//文件操做
string fullDirPath = Utils.GetMapPath(string.Format("/aspx/{0}/", buildPath)); DirectoryInfo dirFile = new DirectoryInfo(fullDirPath); if (Directory.Exists(fullDirPath)) { foreach (FileInfo file in dirFile.GetFiles()) { //檢查文件 Model.url_rewrite modelt = ls.Find(p => p.page.ToLower() == file.Name.ToLower()); if (modelt == null) { if (file.Exists) file.Delete(); } } }
List Find方法
ls.Find(p => p.page.ToLower() == file.Name.ToLower());
//使用數組分割時
string[] names = name.Split(new char[] { '|' });Directory.GetFiles(dirPath)//判斷文件是否存在FileArrayIsExist(pic_file,filePath)
相關文章
相關標籤/搜索