List all files and directories in a directory + subdirectories

前端 未结 15 1889
陌清茗
陌清茗 2020-12-13 01:46

I want to list every file and directory contained in a directory and subdirectories of that directory. If I chose C:\\ as the directory, the program would get every name of

15条回答
  •  Happy的楠姐
    2020-12-13 02:30

    using System.IO;
    using System.Text;
    string[] filePaths = Directory.GetFiles(@"path", "*.*", SearchOption.AllDirectories);
    

提交回复
热议问题