Windows에서 텍스트 문서, .docx 및 .xls 문서를 여는 방법 전화 번호 8, 격리 된 저장소에 파일을 저장하고 다음을 사용하여 열려고합니다. Launcher.FileAsync하지만 결과가 표시되지 않습니다. GetFileAsync()
의 구문은Windows Phone에서 .txt 및 .docx 및 .xls 문서를 여는 방법 8
string file = "Download.txt";
IsolatedStorageFileStream isfStream = new IsolatedStorageFileStream(file, FileMode.Create, IsolatedStorageFile.GetUserStoreForApplication());
isfStream.Close();
StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile pdffile = await local.GetFileAsync(file);
Windows.System.Launcher.LaunchFileAsync(pdffile);
체크, 같은 것을 시도 [이] (http://stackoverflow.com/questions/16791369/accessing-files-from-windows-store-app). – Gowtham