C# IO操作(五)檔案的遞迴載入

來源:互聯網
上載者:User

標籤:des   style   blog   color   使用   os   io   檔案   

      本篇是一個案例,其核心通過代碼展示代碼中的遞迴這個用法,程式的介面如下:

當點擊“載入”按鈕時,根據路徑中的地址,載入該檔案夾下所有的子檔案夾和子檔案,代碼如下:

 1 private void BtnLoad_Click(object sender, EventArgs e) 2         { 3             string sPath = txtPath.Text.Trim(); 4             LoadDirAndFile(sPath, tvList.Nodes); 5         } 6  7         private void LoadDirAndFile(string sPath, TreeNodeCollection treeNodeCollection) 8         { 9             string strDir = sPath.Substring(sPath.LastIndexOf(@"\") + 1);10             TreeNode tNode = treeNodeCollection.Add(strDir);11 12             //載入所有目錄13             string[] strDir1 = Directory.GetDirectories(sPath);14             foreach (string item in strDir1)15             {16                 //返回目錄的最後一級(名稱)17                 string sDir = item.Substring(item.LastIndexOf(@"\") + 1);18                 TreeNode tNode1 = tNode.Nodes.Add(sDir);19                 LoadDirAndFile(item, tNode1.Nodes);     //遞迴載入20             }21 22             string[] strFiles = Directory.GetFiles(sPath, "*.txt");23             foreach (string item in strFiles)24             {25                 TreeNode tNodeFile = treeNodeCollection.Add(Path.GetFileName(item));26                 tNodeFile.Tag = item;27             }28         }29 30         private void tvList_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e)31         {32             if (e.Node.Tag!=null)33             {34                 //檔案節點35                 txtContent.Text = File.ReadAllText(e.Node.Tag.ToString(), Encoding.Default);36             }37         }

     總結:

     1.負載檔案夾節點時,要考慮到檔案夾下還有可能有子檔案夾和子檔案,所以要使用遞迴載入;

     2.在實現點擊檔案節點,要在右邊的文字框中查看文字檔全部的內容,就在遞迴負載檔案夾和檔案時,為所有的檔案節點加了tag屬性,後面雙擊節點時,只要tag屬性不為空白即為檔案節點(讀取即可),而為空白的則是檔案夾節點(不需要處理)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.