我想找出文件夹的完整目录。对于例如Folder \ TopLevel \ Sub-Directory及以上版本。但是,顶级文件夹的名称完全不同。顶级1,顶级2 ..它们都有不同的子目录等。即使所有文件夹的命名都不同,我怎么能一次显示所有目录。谢谢!
我的代码:
using System;
using System.IO;
namespace FolderStructure
{
public class Folder
{
static void Main(string[] args)
{
string[] fileArray = Directory.GetDirectories("H:\\Folder\\TopLevel\\Sub-Directory\\");
for (int i = 0; i < fileArray.Length; i++)
{
Console.WriteLine(fileArray[i]);
}
Console.ReadLine();
}
}
}
修改
此图像显示了它只会在子文件夹之前发生。但是,我想知道子文件夹中的内容以及之后的内容。
答案 0 :(得分:-1)
这是我几周前写的一个程序,它将结果保存到xml
{{1}}