Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB copy the newest file

I am using the following command to copy the most recently added file from a connected device into the directory that I want:

adb pull sdcard/Robotium-Screenshots/filename.jpg D:\jenkins\jobs\

But it can copy only the file that I specify.

How can I copy the newest file from sdcard/Robotium-Screenshots/ to D:\jenkins\jobs\ without specifying it by name?

like image 295
vTad Avatar asked Dec 02 '25 11:12

vTad


1 Answers

Here is a one-liner which would pull the last modified file from a specified folder:

adb exec-out "cd /sdcard/Robotium-Screenshots; toybox ls -1t *.jpg 2>/dev/null | head -n1 | xargs cat" > D:\jenkins\jobs\latest.jpg

Known limitations:

  • It relies on ls command to do the sorting based on modification time. Historically Android devices had multiple sources for the coreutils, namely toolbox and toybox multi-binaries. The toolbox version did not support timestamp based sorting. That basically means that this won't work on anything older than Android 6.0.

  • It uses adb exec-out command to make sure that binary output does not get mangled by the tty. Make sure to update your platform-tools to the latest version.

like image 199
Alex P. Avatar answered Dec 05 '25 00:12

Alex P.



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!