c#-从Android的Visual Studio模拟器使用Android设备监视器查找文件
作者:互联网
我已经使用我的应用创建了文件,并且想要使用Android设备监视器访问文件.这是我使用的路径
string filepath = Path.Combine(Android.OS.Environment.ExternalStorageDirectory.AbsolutePath,
Android.OS.Environment.DirectoryDocuments, "somefilename.txt")
结果,当在用于Android的Visual Studio模拟器上运行时,我得到以下路径:
/ storage / emulated / 0 / Documents
如果我启动ADM并使用File Explorer查找,则找不到该文件夹.因为我在模拟器上,所以我应该能够访问我认为的文件.我只有以下类似的(空)文件夹:
storage/emulated/legacy
storage/sdcard0
同样在data / data / appName /或data / media / 0下根本没有文件.我使用的路径错误吗?我不想使用真实的设备,因为您每次都必须拆下并重新连接电缆,以查看文件是否已更改…
如果我尝试使用adb shell ls / storage / emulated / 0 /我得到
No such file or directory
模拟器正在运行Android 5.0,并且该应用已使用Android 6.0进行了编译.
解决方法:
看来我found the right path到了符号链接:
/mnt/shell/emulated/0/Documents
标签:xamarin,filesystems,c,android,visual-studio-emulator 来源: https://codeday.me/bug/20191111/2022576.html