Answers for "get all folders in directory c#"

C#
3

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 "get all folders in directory c#"

C# Answers by Framework

Browse Popular Code Answers by Language