camalot / madb

The Original MADB Project. This is a Managed port of the Android Debug Bridge to allow communication from .NET applications to Android devices. This wraps the same methods that the ddms uses to directly communicate with ADB. This gives more flexibility to the developer than launching an adb process and executing one of its build in commands.
http://madb.bit13.com
Other
107 stars 40 forks source link

Suffix upper case lead to upload failed #17

Closed siterui closed 8 years ago

siterui commented 8 years ago

var pushPaths = new string[] {@“c:\123.JPG” }; SyncResult rust =drivce.SyncService.Push(pushPaths, remote, new NullSyncProgressMonitor());

rust.Code=0 But the phone can not find the file 123.JPG Modify as: 123.jpg success

camalot commented 8 years ago

how are you attempting to 'find the file'?

you have to find the file as 123.JPG. or, if that is what you are looking for, than there may be a bug where extensions are lower-cased.