如果在递归复制期间存在软链接,则ADB推送失败

mk.*_*k.. 6 android adb

我在目录中有很多文件.其中很少是软链接.

当我单独复制时,软链接副本工作正常,没有任何问题.

$ adb push .libs/libgsti.la /sdcard/temp/.libs/
121 KB/s (5196 bytes in 0.041s)
Run Code Online (Sandbox Code Playgroud)

但是当我尝试复制包含软链接的目录中的所有文件时,尝试复制带有错误的软链接时会失败:

功能未实现

$ adb push .libs/ /sdcard/tmp/.libs/
...... (All success)
failed to copy '.libs/libgsti.la' to '/sdcard/temp/.libs/libgsti.la': Function not implemented
Run Code Online (Sandbox Code Playgroud)

这个问题有解决方法吗?