1
noe132 2016-09-27 20:43:39 +08:00
adb shell rm -rf /sdcard/视频
adb shell - run remote shell interactively adb shell <command> - run remote shell command |
2
noe132 2016-09-27 20:47:18 +08:00
好像这个编码问题很棘手
|
3
Septembers 2016-09-27 20:47:26 +08:00
@noe132 command 请加引号
|
4
noe132 2016-09-27 20:57:04 +08:00
在 windows 环境下,在命令行窗口是 gbk 936 代码页。
如果手动切换成 chcp 65001 ,就不能用输入法 实际上这个命令是由 adb 传进去执行的,所以只要保证传进去编码是正确就行 那么我测试了一下,编辑一个 bat 文件,用 utf-8 编码保存,内容为 ''' adb shell "rmdir /sdcard/视频" ''' 是可以正常删除文件夹的。尽管在 windows 下命令行窗口里中文显示的是乱码。 重点是用 utf-8 编码格式保存。 |
5
noe132 2016-09-27 20:57:19 +08:00
linux 下应该就不存在编码问题了吧~
|