One of my cameras "Canon PowerShot SD750" is not shown as a drive (x:\) as my Nikon D50 does. It appears as "Scanners and cameras" in the explorer.
A
AndersHolmstrom
@AndersHolmstrom
Posts
-
Help to access Digital Camera from C# -
Help to access Digital Camera from C#Hi, I need help to access the files on my digital camera. I have tryed to access it with
String path; Shell32.ShellClass shell = new Shell32.ShellClass(); Shell32.Folder2 folder = (Shell32.Folder2)shell.BrowseForFolder( this.Handle.ToInt32(), "Select Folder...", 0, Shell32.ShellSpecialFolderConstants.ssfDESKTOP ); path = folder.Self.Path;
path = ";;{E211B736-43FD-11D1-9EFB-0000F8757FCD}\\devid:{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\\0000:" Unfortunately this path is not accessable with
String \[\] files = Directory.GetFiles(path);
Any idea how to access the files?