c# list all files in a directory and subdirectory

104

c# list all files in a directory and subdirectory -

string[] allfiles = Directory.GetFiles("path/to/dir", "*.*", SearchOption.AllDirectories);

Comments

Submit
0 Comments