Answers for "list all folders in a directory and subdirectories with c#"

C#
12

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
1

list all files in directory and subdirectories c#

string[] entries = Directory.GetFileSystemEntries(path, "*", SearchOption.AllDirectories);
Posted by: Guest on July-24-2020

Code answers related to "list all folders in a directory and subdirectories with c#"

C# Answers by Framework

Browse Popular Code Answers by Language