我想将一个名为“logger.txt”的文件移动到连接到我的电脑的安卓设备上。文本文件当前位于“c:\logger.txt”,我希望它转到 -“Computer\Nexus 7\Internal storage”。没有驱动器号,所以我怎么知道将它移动到哪里。我试过了:
move c:\logger.txt Computer\Nexus 7\Internal storage
它返回“命令的语法不正确。”
使用 ADB(Android 调试桥)
adb push the_file_you_want_to_push the_directory_on_the_device
将文件 ( the_file_you_want_to_push
) 推送到设备上 (in the_directory_on_the_device
)
要获取 the_directory_on_the_device 的名称,可以使用adb shell
andls/cd
命令获取路径
ADB 可执行文件位于ADT_DIRECTORY/sdk/platform-tools
您还可以使用从 Android 获取文件到您的计算机adb pull
希望能帮助到你