eclipse - DDMS Android File Explorer display dot folders -
how file explorer in ddms display folders start dot.
for example, /mnt/.test not show in ddms. there way display it?
i aware can manipulate these files adb shell. i'm asking if there way ddms.
edit: submitted patch fix in ddms: https://android-review.googlesource.com/#/c/37801/ can rebuild ddmlib patch , drop eclipse , able see files , folders starting dot.
edit 2: i've uploaded patched ddmlib.jar since building android patch ton of work.
to use, need figure out eclipse loading jar , put there. on windows machine eclipse\configuration\org.eclipse.osgi\bundles\355\1\.cp\libs.
it seems at minimum need change
thread t = new thread("ls " + entry.getfullpath()) { //$non-nls-1$ to
thread t = new thread("ls -a" + entry.getfullpath()) { //$non-nls-1$ in getchildren() method , similar change ls -la in dolsandthrow() method of com.android.ddmlib.filelistingservice within ddms sources.
you may have make changes elsewhere results beginning . handled.
(personally, i'll stick shell)
Comments
Post a Comment