Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use adb pull command? [duplicate]

Tags:

Possible Duplicate:
How to copy selected files from Android with adb pull

I am using adb pull command like this:

adb pull /sdcard/*.trace C:/

but i show me remote object '/sdcard/*.trace' does not exit i check trace files are in the sdcard.Now how to pull these files from sdcard.Can you help me How to fix?

like image 597
user1050667 Avatar asked Oct 21 '12 04:10

user1050667


People also ask

How do I access files using adb?

Open cmd type adb shell then press enter. Type ls to view files list.


1 Answers

I don't think adb pull handles wildcards for multiple files. I ran into the same problem and did this by moving the files to a folder and then pulling the folder.

I found a link doing the same thing. Try following these steps.

How to copy selected files from Android with adb pull

like image 75
Aditya Avatar answered Sep 24 '22 08:09

Aditya