c# - File download and save locally windows phone -


i m saving image local folder windows phone application

var localfolder = applicationdata.current.localfolder   var photofile = localfolder.createfileasync(("mani"),         creationcollisionoption.replaceexisting); 

i m saving file without extension while save locally security reason , avoid other apps view.

when search google got api launch default apps file

windows.system.launcher.launchfileasync(photofile); 

but local file dont have extension can't use api default application launch please guide me alternative solution this

thanks,


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -