標籤:http io 檔案 for ar art div 代碼
遍曆檔案夾下所有子檔案夾,並且遍曆設定檔某一節點中所有key,value並且綁定到GridView上
C#代碼
- Helper app_Helper = new Helper();
-
- DataSet ds = new DataSet();
-
- DataTable dt = new DataTable();
-
- protected void Page_Load(object sender, EventArgs e)
- {
- gvwBind();
- }
-
- #region 綁定GridView
-
- /// <summary>
- /// 綁定GridView
- /// </summary>
- protected void gvwBind()
- {
- INI.INIPath iniINIPath = new INI.INIPath();
- INI.INIFile iniINIFile = new INI.INIFile(iniINIPath.getINIPath());
-
- string FolderNames = app_Helper.GetAllFolder(Server.MapPath("../../APPDIR"));//獲得APPDIR檔案夾下所有子檔案夾名
-
- string[] FolderName = new string[FolderNames.Split(‘,‘).Length - 1];//聲明個數組為了儲存檔案夾絕對路徑
-
- FolderName = FolderNames.Split(‘,‘);//給檔案夾絕對路徑數組賦值
-
- dt.Columns.Add("LKNAME", typeof(string));
- dt.Columns.Add("qdjsjm", typeof(string));
- dt.Columns.Add("qdipdz", typeof(string));
-
- for (int i = 0; i < FolderName.Length - 1; i++)
- {
- DataRow row = dt.NewRow();
-
- FolderName[i] = FolderName[i].Substring(FolderName[i].LastIndexOf(‘\\‘) + 1);//截取檔案夾名
-
- row["LKNAME"] = FolderName[i];//給 LKNAME 字元賦值
-
- if (!iniINIFile.IniReadValue("dzjclkzp", FolderName[i]).Equals(""))//設定檔中是否存在相同檔案夾名的key
- {
- row["qdjsjm"] = iniINIFile.IniReadValue("dzjclkzp", FolderName[i]).Split(‘,‘)[0];//給qdjsjm欄位賦值
- row["qdipdz"] = iniINIFile.IniReadValue("dzjclkzp", FolderName[i]).Split(‘,‘)[1];//給qdipdz欄位賦值
- }
-
- dt.Rows.Add(row);
- }
-
- gvwGKWH.DataSource = dt;//綁定到數組
- gvwGKWH.DataBind();
- }
-
- #endregion 綁定GridView
推薦篇文章