Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我的计算机中有一个文件夹结构,例如 A\B 并且 B 子文件夹包含 5 个文件,如果我发出命令
adb push c:\programs\A\*.* /sdcard/fooBar
它将 B 子文件夹中的所有 5 个文件复制到 /sdcard/fooBar 如何将整个子文件夹 B 复制到 android 设备中,以便设备内的 fodler 结构看起来像/sdcard/fooBar/B/5-files?
/sdcard/fooBar/B/5-files
不使用\*.*可能没问题
\*.*
adb push c:\programs\A\ /sdcard/fooBar/
adb push c:\programs\A\B /sdcard/fooBar/B