查看最大的文件
adb shell find /storage/emulated/0 -type f -exec ls -lh {} \; | sort -k5 -nr | head -10
查看占用空间排行
adb shell du -sh /storage/emulated/0/* | sort -nr | head -5
删除前先确认
adb shell ls -la /storage/emulated/0/temp/
adb shell rm -rf /storage/emulated/0/temp/
重要数据先备份
adb pull /storage/emulated/0/important/ ./backup/
adb shell rm -rf /storage/emulated/0/important/
使用通配符
adb shell ls -la /storage/emulated/0/important/*.apk
adb shell rm -f /storage/emulated/0/important/*.tmp
查找目录并强制覆盖复制
adb shell find /storage/emulated/0 -name "*DCIM*" -exec cp -rf {} /storage/emulated/0/Music/ \;