Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.
Use this skill when you need to find a saved file on the Agent Phone, then upload/share it in an app.
/storage/emulated/0/DCIM/Camera/storage/emulated/0/Pictures/storage/emulated/0/Download/storage/emulated/0/Movies/storage/emulated/0/Pictures/CapCut/storage/emulated/0/Movies/CapCut/storage/emulated/0/DCIM/Camerafind under /storage/emulated/0.Use shell (device-side), not workspace exec.
Quick latest list:
shell("sh -lc 'ls -1t /storage/emulated/0/DCIM/Camera | head -n 20'")
Wider image search:
shell("sh -lc 'find /storage/emulated/0 -type f \\( -iname \"*.jpg\" -o -iname \"*.jpeg\" -o -iname \"*.png\" -o -iname \"*.webp\" \\) | head -n 400'")
Wider video search:
shell("sh -lc 'find /storage/emulated/0 -type f \\( -iname \"*.mp4\" -o -iname \"*.mov\" -o -iname \"*.mkv\" \\) | head -n 400'")
Verify one candidate path:
shell("ls -l /storage/emulated/0/DCIM/Camera/<filename>")
/storage/emulated/0/... over /sdcard/... (symlink issues can hide find results)./sdcard must be used, use find -L /sdcard ....