云手机服务器 CPH-常用ADB命令有哪些?:文件操作
文件操作
- 从本地设备向手机发送文件
adb push file mobile_directory
示例:
将本地设备上的“C:/Downloads/test.png”文件发送至手机的“/data/media/0/Pictures”目录下,请执行adb push C:/Downloads/test.png /data/media/0/Pictures命令。可通过如下方法验证是否发送成功:
adb shellcd /sdcard/Downloadls
- 从手机复制文件到本地设备
adb pull file local_computer_directory
示例:
将手机上的“/sdcard/Download/test.png”文件复制到本地设备的“C:/Downloads”目录下,请执行adb pull /sdcard/Download/test.png C:/Downloads命令。
- 移动文件/文件夹
adb shell mv path/file newpath/file
- 新建文件夹
adb shell mkdir path
- 新建文件
adb shell touch filename
- 重命名文件/文件夹
adb shell rename path/filename newpath/newfilename
- 查看文件内容
adb shell cat file