c# - Creating and accessing a folder with in the application for windows phone 8.1 -


can 1 me creating , accessing folder in application (at same place have our assets,html folders). requirement download file in folder , access it.

i have used:

storagefolder destinationfolder = await package.current.installedlocation.getfolderasync("assets"); storagefile localfile = await destinationfolder.createfileasync(localfilename, creationcollisionoption.replaceexisting); 

when checked showing path as: assets folder path: c:\data\shareddata\phonetools\appxlayouts\785bb4a5-5b27-4720-918e-7ceaeeb58c52vs.debug..

if file saved not being use end user directly should use app local folders. if have few amount of data can use localsettings also. more available storage options , process of accessing check link.


Comments