Is there a way to save/retrieve files from an android device, via the USB debugging mode.
That means I want my application to get connected even if the Device is charging via the USB cable connected to the PC.
I think the ADB (Android Debug Bridge) is capable of rendering this service, however I am not quite sure if it works, If it does how can I use it with C# to simply save and get some files from the SD-Card
ADB can indeed accomplish that for you.
to pull a file from the device:
to push a file to the device
(Note: obviously you’ll need to replace
somefile.txtwith your own path and/or filename.)I am not very familiar with C# but surely you could make something with that that can interact with the ADB binary to accomplish these tasks.
See here for a more complete listing of ADB functionality / syntax