在 Windows 10 移动设备上使用 IsoStoreSpy 访问应用程序存储不起作用
Accessing application storage using IsoStoreSpy on Windows 10 mobile doesn't work
我在使用 IsoStoreSpy 访问应用程序存储时遇到问题。在 Windows 10 Mobile 上测试我们的记录器机制期间,QA 使用 IsoStoreSpy 3.0 访问存储以获取日志时出错,这让我感到惊讶,它不起作用。我检查了我的 phone 并确认 IsoStoreSpy 没有工作。
我还测试了访问存储使用:
Windows Phone 电动工具
ISETool.exe 来自 SDK
访问存储时全部返回错误。问题 有使用 Visual Studio 重新安装应用程序的解决方案。它确实有效,但这不是解决方案,因为我们需要在不使用 VS 的情况下访问应用程序的存储。此程序已旁加载。
我尝试使用该路径访问应用程序存储。一个是使用
从程序中读取的
StorageFolder appInstalledFolder = ApplicationData.Current.LocalFolder;
PropertyToBeDisplayedOnTheScreen = appInstalledFolder.Path;
访问路径我用了http://forums.windowscentral.com/windows-10-mobile-insider-preview/358307-access-c-root-windows-10-mobile-file-explorer.html to get the C: drive then to access application storage, but I could not get to that folder. It is possible to access the folder by using method from http://forum.xda-developers.com/windows-10-mobile/guide-filesystem-access-sftp-windows-10-t3185766但是不太好因为需要修改系统
我的问题是是否有其他方法可以像 IsoStoreSpy 一样访问存储?
我们可以使用 App File Explorer 查看和操作旁加载应用存储的文件。无论您的应用程序部署在 Debug 模式还是 Release 模式,此工具都应该能够工作。
要使用此功能,我们需要打开 device discovery and pairing 以及 Device Portal。然后我们可以通过浏览器访问应用程序存储,如下所示:
更多信息,请参阅Device Portal for Mobile and also Using the App File Explorer to see your app data。
我在使用 IsoStoreSpy 访问应用程序存储时遇到问题。在 Windows 10 Mobile 上测试我们的记录器机制期间,QA 使用 IsoStoreSpy 3.0 访问存储以获取日志时出错,这让我感到惊讶,它不起作用。我检查了我的 phone 并确认 IsoStoreSpy 没有工作。
我还测试了访问存储使用:
Windows Phone 电动工具
ISETool.exe 来自 SDK
访问存储时全部返回错误。问题
我尝试使用该路径访问应用程序存储。一个是使用
从程序中读取的 StorageFolder appInstalledFolder = ApplicationData.Current.LocalFolder;
PropertyToBeDisplayedOnTheScreen = appInstalledFolder.Path;
访问路径我用了http://forums.windowscentral.com/windows-10-mobile-insider-preview/358307-access-c-root-windows-10-mobile-file-explorer.html to get the C: drive then to access application storage, but I could not get to that folder. It is possible to access the folder by using method from http://forum.xda-developers.com/windows-10-mobile/guide-filesystem-access-sftp-windows-10-t3185766但是不太好因为需要修改系统
我的问题是是否有其他方法可以像 IsoStoreSpy 一样访问存储?
我们可以使用 App File Explorer 查看和操作旁加载应用存储的文件。无论您的应用程序部署在 Debug 模式还是 Release 模式,此工具都应该能够工作。
要使用此功能,我们需要打开 device discovery and pairing 以及 Device Portal。然后我们可以通过浏览器访问应用程序存储,如下所示:
更多信息,请参阅Device Portal for Mobile and also Using the App File Explorer to see your app data。