Windows phone 8 でファイルを起動するための次のコードがあります。
string ppFile = @"Assets\Documents\test.txt";
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(ppFile);
var success = await Windows.System.Launcher.LaunchFileAsync(file);
*.txt ファイルがあると、Windows Phone 8 が起動します。しかし、「example.pptx」ファイルを起動したいのですが、コードが機能しません。おそらく、PowerPoint ファイルにアクセス許可の問題がありますか?