Horje
c# count files in directory and subdirectories Code Example
c# count directories in directory and subdirectories
var countDirectories = System.IO.Directory.GetDirectories(sourcePath, "*", SearchOption.AllDirectories).Count();
c# count files in directory and subdirectories
var countFiles = System.IO.Directory.GetFiles(sourcePath, "*.*", SearchOption.AllDirectories).Count();




Csharp

Related
using c# Code Example using c# Code Example
change text color wpf Code Example change text color wpf Code Example
c# string to binary Code Example c# string to binary Code Example
how to print a variable in c# Code Example how to print a variable in c# Code Example
how to loop through a list and skip first element  in c# Code Example how to loop through a list and skip first element in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6