Android Question read file to PC from device

Roberto P.

Well-Known Member
Licensed User
Longtime User
Hi all,
how do I read from the device, connected to PC with USB cable, a text from files in a folder?
Thank you
 

DonManfred

Expert
Licensed User
Longtime User
I don´t think you can access the files on your pc from your device when connected via USB.
I guess you should push the file from your pc to your device with adb push
 
Upvote 0

Roberto P.

Well-Known Member
Licensed User
Longtime User
thanks Manfred
okay also send files from the PC to the device. But I do not know the ADP Push system.
 
Upvote 0

Roberto P.

Well-Known Member
Licensed User
Longtime User
thanks Manfred

if you can help someone, here's how to copy files from PC to device

from the command line

B4X:
adb push path\filename sdcard/directory

example


adb push c:\temp\filename.txt /sdcard/myapp

regards
 
Upvote 0
Top