使用 Android Device Monitor 从 Visual Studio Emulator for Andro



我已经用我的应用程序创建了文件,我想用安卓设备监视器访问这些文件。这是我使用的路径

string filepath = Path.Combine(Android.OS.Environment.ExternalStorageDirectory.AbsolutePath, 
                               Android.OS.Environment.DirectoryDocuments, "somefilename.txt")

结果,当在Visual Studio Emulator for Android上运行时,我得到以下路径:

/storage/emulated/0/Documents

如果我启动 ADM 并使用文件资源管理器查看,我找不到这样的文件夹。因为我在模拟器上,所以我应该能够访问我认为的文件。我只有以下类似的(空)文件夹:

storage/emulated/legacy
storage/sdcard0

同样在data/data/appName/data/media/0下根本没有文件。我是否使用了错误的路径?我不想使用真正的设备,因为您每次都必须分离并重新连接电缆以查看文件是否更改......

如果我尝试使用adb shell ls /storage/emulated/0/我会得到

没有这样的文件或目录

模拟器运行的是Android 5.0,应用程序是用Android 6.0编译的。

似乎我找到了通往符号链接的正确路径:

/

mnt/shell/emulated/0/Documents

相关内容

  • 没有找到相关文章

最新更新