A good starting point would be from @NAS s post in the Accelerator Drives thread. I would start with a "find" command and piped to exec.   The -ls parameter does a file listing of the results.   So to find all the files larger than 10 Megs in size and give a listing: find /mnt/user/Media/ -type f -size +10M -ls   To find files smaller than 10 Megs in size and give a listing: find /mnt/user/Media/ -type f -size -10M -ls   Other units available fo
    • Upvote
    2