"안드로이드 PC로 파일 복사"의 두 판 사이의 차이

8번째 줄: 8번째 줄:
==예시==
==예시==
<source lang='dos'>
<source lang='dos'>
D:\adt-bundle\sdk\platform-tools>adb pull /etc/hosts c:\
D:\adt-bundle\sdk\platform-tools>adb pull /etc/hosts d:\
0 KB/s (25 bytes in 0.161s)
0 KB/s (25 bytes in 0.226s)
</source>
</source>
:→ 기기에 들어있는 /etc/hosts 파일이 C:\로 복사되었다. 파일 크기는 25바이트.
:→ 기기에 들어있는 /etc/hosts 파일이 D:\로 복사되었다. 파일 크기는 25바이트.
<source lang='dos'>
<source lang='dos'>
D:\adt-bundle\sdk\platform-tools>type c:\hosts
D:\adt-bundle\sdk\platform-tools>type d:\hosts
127.0.0.1                  localhost
127.0.0.1                  localhost
</source>
</source>

2012년 12월 12일 (수) 15:19 판

안드로이드 PC로 파일 복사

1 명령어

adb pull 기기파일 PC위치

2 예시

D:\adt-bundle\sdk\platform-tools>adb pull /etc/hosts d:\
0 KB/s (25 bytes in 0.226s)
→ 기기에 들어있는 /etc/hosts 파일이 D:\로 복사되었다. 파일 크기는 25바이트.
D:\adt-bundle\sdk\platform-tools>type d:\hosts
127.0.0.1                   localhost

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}