One can list all directories on /mnt
using:
adb shell ls /mnt
How can one list all files which are larger than 100M in the directory /mnt
?
adb shell find -size +10M ;
sudo adb shell find -size +10M ;
Both the above command encounter permission issue such as
find: ./dev/socket/property_service: Permission denied
find: No ./dev/pts: Permission denied
find
which can list files and filter for files based on their size. – Robert Sep 05 '21 at 04:00find -H /sdcard
– alecxs Sep 05 '21 at 07:50