Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
335 views
in Technique[技术] by (71.8m points)

c# - How to check Isolated Storage of Windows 10 mobile emulator?

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The IsolatedStorageExplorer tool (ISE) for WP8.1 works just fine with W10m apps (you will find it at C:Program Files (x86)Microsoft SDKsWindows Phonev8.1ToolsIsolatedStorageExplorerTool).

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:

enter image description here

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:
    enter image description here

  • 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...