How to access/manipulate Sony MP3 player’s contents programmatically?..
A Sony Walkman MP3 player (NWZ-W202) is connected to a Vista Ultimate PC through a USB port.
The player contents is visible by the Windows Explorer as “Computer\WALKMAN NWZ-W202\Storage Media\MUSIC\MediaFile1.mp3”.
Computer Management\Storage\Disk Management lists the device as a nameless volume with “Healthy (EISA Configuration)” Status, but would not let do anything with it (like “Change Drive Volume and Paths...”, as the context menu comes out empty of action entries.
And, of course, there is nothing useful coming out of the following code:
foreach (DriveInfo driveInfo in DriveInfo.GetDrives())
Console.WriteLine(driveInfo.Name);
Quick web search revealed similar unsolved problems with Sony Walkman devices:
experts-exchange.com/Storage/Misc/Q_24422039.html
social.answers.microsoft.com/Forums/en-US/vistahardware/thread/cc1e7050-5c44-4eb4-97e7-8edfdb42f24d
Thanks.