anupam.unique
anupam.unique

Reputation: 81

adb pull File from Specific Folder

Please guide me, I need to pull File (with specific format) from the Phone Location (inside folder), Ex: "ABC****" file from "My_Folder_Date/time" Folder.

Command: adb Pull /sdcard/My_Folder*/ABC* <Destination path>

Upvotes: 0

Views: 1457

Answers (1)

anupam.unique
anupam.unique

Reputation: 81

Got the Answer, Thanks. Copied file to temp folder (sdcard/tmp) in Phone and then performed ADB Pull.

Command:

adb Shell cp /sdcard/My_Folder*/ABC /sdcard/tmp

then,

adb pull /sdcard/tmp destination_path

Upvotes: 1

Related Questions