SoFunction
Updated on 2025-04-10

Command to delete files in sdcard in Android


#Remount the emulator
adb remount
 
#Start shell command
adb shell
 
#Enter into the sdcard card directory
cd sdcard
#All folders will be listed
ls
 
#Delete files or folders
rm -r (folder name)