1

I am currently working on an application for managing a WPD device. I want to add an option to open the wpd device in windows explorer to view the saved files. Problem is that I can't find a way to open explorer pointing to the device's "folder". I have all information of the device (pnp device id, class name, etc.) Anybody knows a solution?

Kiquenet
  • 14,494
  • 35
  • 148
  • 243

1 Answers1

0

Someone seems to have posted an answer similar to this:

WPD equivalent of WIA DeviceDlg

also you could try enumerating all the children of the "My Computer" node - WPD devices usually show up there. http://msdn.microsoft.com/en-us/library/ms909867.aspx

Start with the desktop and then enumerate the my computer node and then the children of that. Maybe there is a property that will enable you to pick the child of My Computer that corresponds to the WPD device.

Community
  • 1
  • 1
obelix
  • 986
  • 8
  • 14