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 pull
및 adb 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
ADBFS a FUSE Filesystem for Android Debug Bridge ( Linux 또는 Mac을 사용하는 경우)
adb pull
명령이 원격 매개 변수에 폴더 이름을 받아들이 기 시작 했지만 여전히 tar
명령 을 사용하는 것을 선호합니다 . 더 많은 유연성을 제공합니다. 파일 이름 패턴 ( include 및 exclude ), 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
'programing' 카테고리의 다른 글
Glide 라이브러리를 사용하여 이미지로드 완료시 표시되는 진행률 표시 줄의 가시성 설정 (0) | 2020.10.06 |
---|---|
정적 생성자는 어떻게 작동합니까? (0) | 2020.10.06 |
Java를 사용하여 디렉토리의 모든 파일을 재귀 적으로 나열 (0) | 2020.10.06 |
지정된 실행 파일 외부의 단일 단계 어셈블리 코드에 gdb를 사용하면 "현재 함수의 범위를 찾을 수 없습니다"오류가 발생합니다. (0) | 2020.10.06 |
조각에서 사용자 지정 ActionBar 제목 설정 (0) | 2020.10.06 |