programing

adb는 여러 파일을 가져옵니다.

nasanasas 2020. 10. 6. 08:18
반응형

adb는 여러 파일을 가져옵니다.


다음을 사용하여 여러 파일을 가져 오는 가장 좋은 방법은 무엇입니까?

adb pull

내에있는 /sdcard/다음과 같은 이름을 가진 25 개 파일 :

gps1.trace
gps2.trace
...
gps25.trace

와일드 카드가 작동하지 않습니다.

adb pull /sdcard/gps*.trace .

와일드 카드를 허용 xargs하는 adb shell ls명령 의 결과와 사용할 수 있습니다 . 이를 통해 여러 파일을 복사 할 수 있습니다. 귀찮게도 adb shell ls명령 의 출력에는를 사용하여 제거 할 수있는 줄 바꿈 제어 문자가 포함됩니다 tr -d '\r'.

예 :

adb shell 'ls sdcard/gps*.trace' | tr -d '\r' | xargs -n1 adb pull
adb shell 'ls /sdcard/*.txt' | tr -d '\r' | sed -e 's/^\///' | xargs -n1 adb pull

adb pull at file 대신 디렉토리 이름을받을 수 있으며 모든 파일이있는 디렉토리를 가져옵니다.

/ sdcard / gpsTraces에서 모든 GPS 추적을 가져옵니다.

adb pull /sdcard/gpsTraces/ . 

adb pulladb push재귀 디렉토리 :

C:\Test>adb pull /data/misc/test/ .
pull: building file list...
pull: /data/misc/test/test1/test2/test.3 -> ./test1/test2/test.3
pull: /data/misc/test/test1/test2/test.2 -> ./test1/test2/test.2
pull: /data/misc/test/test1/test2/test.1 -> ./test1/test2/test.1
pull: /data/misc/test/test1/test.3 -> ./test1/test.3
pull: /data/misc/test/test1/test.2 -> ./test1/test.2
pull: /data/misc/test/test1/test.1 -> ./test1/test.1
pull: /data/misc/test/test.3 -> ./test.3
pull: /data/misc/test/test.2 -> ./test.2
pull: /data/misc/test/test.1 -> ./test.1
9 files pulled. 0 files skipped.
0 KB/s (45 bytes in 0.093s)

C:\Test>adb push . /data/misc/test/
push: ./test1/test2/test.3 -> /data/misc/test/test1/test2/test.3
push: ./test1/test2/test.2 -> /data/misc/test/test1/test2/test.2
push: ./test1/test2/test.1 -> /data/misc/test/test1/test2/test.1
push: ./test1/test.3 -> /data/misc/test/test1/test.3
push: ./test1/test.2 -> /data/misc/test/test1/test.2
push: ./test1/test.1 -> /data/misc/test/test1/test.1
push: ./test.3 -> /data/misc/test/test.3
push: ./test.2 -> /data/misc/test/test.2
push: ./test.1 -> /data/misc/test/test.1
9 files pushed. 0 files skipped.
0 KB/s (45 bytes in 0.062s)

./adb pull /sdcard <-실패

./adb pull /sdcard/ <-재귀 적으로 작동합니다. 후행 슬래시에 유의하십시오.

2014 년 3 월 다운로드 된 Nexus 5 및 adb로 테스트되었습니다.


나는 이것을 Windows 상자 용으로 만들었습니다. 파일 시스템을 마운트하지 않고 와일드 카드를 사용하여 파일을 전송하는 것이 매우 유용합니다. 경로 환경 어딘가에이 스크립트를 포함 할 수 있습니다.

adbpull.bat

@echo off
setlocal enabledelayedexpansion
if %1.==. (
    echo Wilcard parameter is required.
    goto end
)
for /F "tokens=* USEBACKQ" %%F in (`adb shell ls %1`) do (
    set text=%%F
    set mfile=!text:~0,-1!
    adb pull "!mfile!"
)
:end
endlocal

예: adbpull /sdcard/DCIM/Camera/IMG_2016*


'ls'의 출력을 구문 분석하는 것은 일반적으로 나쁜 생각입니다. 대신 '찾기'를 사용하십시오.

adb shell 'find /sdcard/ -name "gps*.trace" -print0' | xargs -0 -n 1 adb pull

ls의 출력을 파싱하면 안되는 이유


ADBFS a FUSE Filesystem for Android Debug Bridge ( Linux 또는 Mac을 사용하는 경우)


adb pull명령이 원격 매개 변수에 폴더 이름을 받아들이 기 시작 했지만 여전히 tar명령 을 사용하는 것을 선호합니다 . 더 많은 유연성을 제공합니다. 파일 이름 패턴 ( includeexclude ), symlink 제어, 파일 권한 유지를 허용합니다. Android 6.0부터는 내장 기능을 사용할 수 있습니다. 그 전에는 다음과 같은 타사 도구를 사용해야했습니다 busybox.

adb exec-out tar c sdcard/amazonmp3 > amazon.tar

Make sure to omit the leading / in your path.


Directory pull is available on new android tools. ( I don't know from which version it was added, but its working on latest ADT 21.1 )

adb pull /sdcard/Robotium-Screenshots
pull: building file list...
pull: /sdcard/Robotium-Screenshots/090313-110415.jpg -> ./090313-110415.jpg
pull: /sdcard/Robotium-Screenshots/090313-110412.jpg -> ./090313-110412.jpg
pull: /sdcard/Robotium-Screenshots/090313-110408.jpg -> ./090313-110408.jpg
pull: /sdcard/Robotium-Screenshots/090313-110406.jpg -> ./090313-110406.jpg
pull: /sdcard/Robotium-Screenshots/090313-110404.jpg -> ./090313-110404.jpg
5 files pulled. 0 files skipped.
61 KB/s (338736 bytes in 5.409s)

building on David's answer, I find this to be slightly better:

adb shell ls /foo | tr -d '\r' | xargs -n1 adb pull

In addition to it being one character less to type (big deal) it doesn't convert the -r into a space. This is a significant difference, as if you try to do

adb shell ls /foo/myFile* | tr '\r' ' ' | xargs -i -n1 adb pull {} someDir

you'll get error saying

remote object '/foo/myFile1 ' does not exist

Instead you can do this, which will work:

adb shell ls /foo/myFile* | tr -d '\r' | xargs -i -n1 adb pull {} someDir 

Wild cards work in my case, I have been using following simple script to import Whatsapp Images of my virtual device in to my desktop

#! /bin/bash
mkdir -p ~/Pictures/Pictures_adb
rm -f ~/Pictures/Pictures_adb/*
cd ~/Pictures/Pictures_adb
adb root
adb shell 'cp /data/media/0/WhatsApp/Media/WhatsApp\ Profile\ Photos/* /sdcard/Pictures/;exit'
adb pull /sdcard/Pictures
mv ~/Pictures/Pictures_adb/Pictures/* ~/Pictures/Pictures_adb/
rmdir ~/Pictures/Pictures_adb/Pictures
cd

In Android, there are some folder with associated permissions! Some folder belong to root- or system user.

You guys should change the permissions of those files, folders before doing "adb pull".

The following commands could help:

adb shell
su
chmod -R 777 target_folder
exit
...
adb pull /.../target_folder/ . (current local folder)

참고URL : https://stackoverflow.com/questions/11074671/adb-pull-multiple-files

반응형