I am writing an app to get pictures off of a camera, and want to open an OpenFileDialog with its InitialDirectory set to be the camera.
This works fine:
openFileDialog.InitialDirectory = "c:\\someFolder\\";
But these do not:
openFileDialog.InitialDirectory = "CameraName\\";
openFileDialog.InitialDirectory = "My Computer\\CameraName\\";
I assume it is because it is an MTP device, and that's not its "real directory name". Is there any way to accomplish this?
Thanks