问题
I am currently working on Windows 10 and my requirement is to check isolated storage of Windows 10 Mobile emulator. With Windows Phone 8/8.1, its possible using IsolatedExplorerTool which we can use using Command Prompt. Can anyone suggest, how I can achieve the same for Windows 10 Emulator ?
回答1:
The IsolatedStorageExplorer tool (ISE) for WP8.1 works just fine with W10m apps (you will find it at C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.1\Tools\IsolatedStorageExplorerTool).
You probably know how to use it, but just in case someone needs some explanation:
You will have to run it from command prompt or powershell. All you have to know is which emulator you are using and your app's package name. The first is obvious, the second you will find in manifest file:
In case you want to get the storage of mobile and the name of the app is different type than GUID, you will have to view code for manifest file (right click -> view code) and get PhoneProductID.
Then it goes like this:
first make sure which emulator index you use - run:
.\ISETool.exe EnumerateDevices
and you should see something like this:
to download your IsolatedStorage from emulator, use this line:
.\ISETool.exe ts deviceindex:4 95fbf894-0aee-4398-b2e3-0f8eed69357c C:\Data\
where
C:\Data\
is your target folder.to upload your data use similar command:
.\ISETool.exe rs deviceindex:4 95fbf894-0aee-4398-b2e3-0f8eed69357c C:\Data\
now
C:\Data\
is your source folder.
Type .\ISETool.exe
to see more help and examples.
来源:https://stackoverflow.com/questions/33063136/how-to-check-isolated-storage-of-windows-10-mobile-emulator