Windows Phone 8 でテキスト ドキュメント、.docx、および .xls ドキュメントを開くにはどうすればよいですか。分離ストレージにファイルを保存してから、Launcher.FileAsync を使用して開こうとしていますが、結果が得られません。詳細については、以下のコードを参照してください。
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);