C#读取文件夹下面的全部文件夹是如何实现的呢?那让我们来看看下面的代码的实现:
- private void button1_Click(object sender, EventArgs e)
- {
- string QQPath;
- using (RegistryKey reg = Registry.LocalMachine.OpenSubKey(@"Software\Tencent\QQ"))
- {
- QQPath = reg.GetValue("Install").ToString();
- }
- textBox1.Text = QQPath; //C#读取文件夹下面的全部文件夹
- Get_Folder(QQPath);
- }
- private void Get_Folder(string FilePath)
- {
- if (Directory.Exists(FilePath))
- {
- foreach (string d in Directory.GetFileSystemEntries(FilePath))
- {
- if (Directory.Exists(d))
- {
- listBox1.Items.Add(d.ToString());
- }
- } //C#读取文件夹下面的全部文件夹
- }
- else
- {
- MessageBox.Show("文件夹不存在!");
- }
- }
C#读取文件夹下面的全部文件夹的基本情况就向你介绍到这里,希望对你学习C#读取文件夹下面的全部文件夹有所帮助。
【编辑推荐】