I have a file let say image.jpg or file.txt .. in my sdcard in wipdows phone 8 /8.1
Now i want to copy that file in my isolated storage of my app .
Can it be done ? If yes How ?
I have a file let say image.jpg or file.txt .. in my sdcard in wipdows phone 8 /8.1
Now i want to copy that file in my isolated storage of my app .
Can it be done ? If yes How ?
You could simply use the KnownFolders.DocumentsLibrary in order to access the files from your SD card.
These are some sample:
Access the SD card in Windows Phone apps
Reading from an SD Card in Windows Phone 8 Applications
You could use the MemoryStream
to transfer the file to IsolatedStorage
and then load it from there.