Answers for "c# list all files in a directory and subdirectory"

C#
2

c# list all files in a directory and subdirectory

string[] allfiles = Directory.GetFiles("path/to/dir", "*.*", SearchOption.AllDirectories);
Posted by: Guest on May-05-2020

Code answers related to "c# list all files in a directory and subdirectory"

C# Answers by Framework

Browse Popular Code Answers by Language