score:1

Accepted answer

it seems like at minimum you would need to do something like change

thread t = new thread("ls " + entry.getfullpath()) { //$non-nls-1$

to

thread t = new thread("ls -a" + entry.getfullpath()) { //$non-nls-1$

in the getchildren() method and a similar change to ls -la in the dolsandthrow() method of com.android.ddmlib.filelistingservice within the ddms sources.

you may also have to make changes elsewhere for results beginning with a . to be fully handled.

(personally, i'll stick to the shell)

score:0

i don't think that it is easily possible. see this post. more info here.

their solution is to traverse files using the command line. give that a try.


Related Query

More Query from same tag