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:
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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…