递归文件夹

本文介绍了一个使用 C# 实现的递归遍历指定目录下所有子文件夹的方法。通过调用 Directory.GetDirectories 方法获取指定路径下的所有子文件夹,并使用 Console.WriteLine 打印每个文件夹的路径。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

1 using System;
2  using System.Collections.Generic;
3  using System.Linq;
4 using System.Text;
5 using System.IO;
6
7 namespace 递归文件夹
8 {
9 class Program
10 {
11 static void Main(string[] args)
12 {
13 string Path = "D:\\Program Files";
14 showDir(Path);
15 Console.ReadLine();
16 }
17 private static void showDir(string parentPath)
18 {
19 foreach (string path in Directory.GetDirectories(parentPath))
20 {
21 Console.WriteLine("开始:" + Path.GetDirectoryName(path));
22 showDir(path);
23 Console.WriteLine("结束"+Path.GetDirectoryName(path));
24 }
25 }
26 }
27 }
28

 

转载于:https://www.cnblogs.com/gyweiUSTC/articles/1881641.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值