不创建拉取文件夹的 Adb 拉取

Adb pull without creating pulled folder

我想从 sdcard 中拉出一个文件夹并将其内容放入文件夹中
但是当我这样做时:
adb pull -a /sdcard/child/ B:/father/
它在文件夹 "father" 中创建了一个名为 "child" 的文件夹,并且在 "child" 文件夹中它包含我想要在 "father".

中的内容

( 它将内容拉到 : B:/father/child/ 而不是 B:/father/ )

已经尝试过:
adb pull -a /sdcard/child/ "B:/father/" adb pull -a /sdcard/child/ B:\father\

提前致谢

(并且已经在没有“-a”的情况下尝试过)

要将 father 的所有内容复制到 child 文件夹中,您可以使用以下命令:

adb pull /sdcard/child/. B:/father/

希望对您有所帮助。