问题描述
我想在外部存储中查看创建的文件夹.
I want to see created folder in external storage.
我已经添加了具有以下权限的 AndroidManifest.xml.<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
但没有变化.
I have already added AndroidManifest.xml with the following permissions.<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
but there is no change.
帮帮我.我无法解决这个问题
Help me. I am not able to slove this problem
推荐答案
/sdcard
是 /storage/emulated/0
的符号链接.因此,您应该能够在 /sdcard/Android/data/
中看到您的应用的外部文件.
/sdcard
is a symlink to /storage/emulated/0
. You should therefore be able to see external files for your app in /sdcard/Android/data/<your app>
.
这篇关于Android 模拟器设备文件资源管理器中的权限被拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!