在deepin系统中adb操作android文件的方法

adb操作android文件的方法

安装adb命令

adb操作android文件首先需要安装adb。

windows

把adb.exe的目录配置到系统环境变量

linux

编辑vim ~/.bashrc文件,添加下面两行。

#Android adb
export PATH=$PATH:/app/Android/Sdk_Deepin/platform-tools

电脑文件放到android

adb push <local> <remote>

例如

$ adb push 1.txt /sdcard/360Download
1.txt: 1 file pushed, 0 skipped. 0.0 MB/s (2 bytes in 0.000s)

android文件放到电脑

adb pull <remote> [local]

例如

$ adb pull /sdcard/360Download/1.txt .
/sdcard/360Download/1.txt: 1 file pulled, 0 skipped. 0.0 MB/s (2 bytes in 0.008s)

不知道android设备路径

这个时候,我们要先用adb shell看一下路径,pwd是查看当前路径。

adb shell
cd /
ls
cd sdcard
ls
pwd 

其他

adb文件管理命令操作实例讲解

你可能感兴趣的:(Deepin)