Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to find out storage usage of an app. I can list file size in adb shell using ls command. But, I didn't find 'du' command in adb shell. Is there any command or tool that allows me to figure out the storage usage of a directory?

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

There's no du in /system/bin. But you can push busybox to device, and use busybox's du.

share|improve this answer
Thanks. Do you know how to install busybox on android emulator? – Kai Sep 18 '10 at 21:29
Just grab the binary of busybox, push it to your device, cd to where you pushed it into, and execute something like ./busybox du – racetrack Sep 18 '10 at 21:35
Thanks. I found this link too: benno.id.au/blog/2007/11/14/android-busybox – Kai Sep 18 '10 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.