list all files in directory and subdirectories c#

90

get all files in all subdirectories c# -

 Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories)

list all files in directory and subdirectories c# -

string[] entries = Directory.GetFileSystemEntries(path, "*", SearchOption.AllDirectories);

Comments

Submit
0 Comments