Test
Test

Reputation: 49

Delete all files with a certain extension using Android ADB

How can I delete all files with a certain extension, for example .png using Android ADB?

Removing one file would be:

adb shell rm downloads/bg.png

But how can I delete all png images on the entire device?

Upvotes: 1

Views: 1046

Answers (1)

Diego Torres Milano
Diego Torres Milano

Reputation: 69198

It's very close to what @Robert mentioned in the comments

$ find -L /sdcard -name "*.png" -exec rm {} \; 2>/dev/null

the only catch is that /sdcard is a symlink so you have to follow them (-L).

Upvotes: 1

Related Questions