I want to push over 120K small files including symlinks using "adb" but without those links if they fail in "remote symlink failed: Permission denied" to Android device.
Asked
Active
Viewed 981 times
1
adb exec-in
you can pipe the tar file to the device and directly extract them without ever saving the tar file. – Robert May 12 '21 at 16:55adb push
provides no filtering options based on file type. You need to use some other method, possibly combined withadb push
e.g.find -type
. But pushing individual files would largely reduce the transfer rate. Better use some other file transfer method. – Irfan Latif May 15 '21 at 17:44