How can I get to all partitions on the hard drive in C # without running the directory path. Since some people split the hard drive into 3, 4, maybe five, and I want my program to be completely crawler.
like this
List<string> dirs = FileHelper.GetFilesRecursive("c:\\..........");
I donβt want just C I want D, E, F ....... etc.
source
share