In my C# 3.5 program I would like to access NTFS/FAT drives from MS Virtual PC machine.
I can see some C++ API for Virtual PC on the Microsoft site, but cannot find .NET one (should I use P-Invoke?). I would like to examine files and folders within filesystem inside the virtual michine with the help or regular .NET API calls like File.ReadAllText, Directory.GetDirectories and so on.
A sample code would be very appreciated.