adb shell mkdir在哪里创建目录

时间:2017-01-05 08:59:21

标签: android

我试过了:

$ adb shell
# mkdir data/local/tmp/testjars
# exit

我认为 testjars 会在当前工作目录中创建,但不会出现任何内容。我创建的这个文件夹( testjars )放在哪里?

1 个答案:

答案 0 :(得分:2)

它将在当前工作目录的任何目录中创建(在adb shell中,而不是您的主机系统中)。

示例:

adb shell # execute shell, the following commands are executed inside it
cd /data/local/tmp # change the current working directory to the temp directory
mkdir data/local/tmp/testjars # create a new directory(ies)

执行上述命令后,testjars目录的路径将跟随:/data/local/tmp/data/local/tmp/testjars

做得更好:

adb shell
cd /data/local/tmp # change the current working directory to where you want to create a subdirectory
mkdir testjars

您最终会得到一个目录/data/local/tmp/testjars

此外,如果您指定的路径没有起始斜杠/,例如mkdir test,它在当前工作目录中创建。如果您使用指定起始斜杠,例如mkdir /test,它在根目录中创建(如果您有权这样做)。