Answers for "c# code to count number of files in a folder"

C#
3

c# get number of files in directory

int count = System.IO.Directory.EnumerateFiles(String path).Count();
Posted by: Guest on October-25-2020

Code answers related to "c# code to count number of files in a folder"

C# Answers by Framework

Browse Popular Code Answers by Language