2

I have created a hidden directory for my app and wish to view it on Android Studio's Android Device Monitor, however, ADM does not show the directory. How can I change ADM's preferences to view that folder?

4

2 回答 2

5

作为源代码阅读后,我发现作为提交命令“ls -l”到设备,所以如果我们想查看隐藏文件,您可以将源代码更改为“ls -al”,然后构建作为。

于 2017-11-04T08:03:37.467 回答
4

如果没有 hack,这在 Android Studio 中似乎仍然是不可能的。另一种方法是使用 adb:

adb shell
cd your/desired/directory
ls -a

etc.
于 2018-10-28T04:52:52.073 回答