I need to create a treeview of a remote filesystem. To do this I am using WMI and mgmtclassgen.exe
using Win32_LogicalDisk I get my drive letters.
Now when user wants to browse its subfolders I want to get the subfolders, i am able to get that using
ManagementObjectSearcher(@"root\CIMV2", @"Associators of {Win32_Directory.Name='e:\'} Where AssocClass =Win32_Subdirectory ResultRole = PartComponent")
but this is not strongly typed. How can i use the strongly typed classes of Win32_Directory and Win32_Subdirectory to get subfolders?
strongly typed? – RRUZ Jan 3 '12 at 15:48