2014-07-18 127 views
3

如何在Windows Phone 8中打開文本文檔,.docx和.xls文檔我將文件保存在隔離存儲中,然後嘗試打開使用Launcher.FileAsync但沒有得到結果。欲瞭解更多信息,請參閱我的代碼如下:如何在Windows Phone 8中打開.txt和.docx和.xls文檔

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); 
+1

檢查[this](http://stackoverflow.com/questions/16791369/accessing-files-from-windows-store-app)。 – Gowtham

回答

1

GetFileAsync()語法

public IAsyncOperation<StorageFile> GetFileAsync(string name) 

其中

:名稱(或路徑相對到當前文件夾)的文件得到。

您的字符串是

string file = "Download.txt"; 

這可能不被接受爲相對路徑。嘗試類似,

string file = @"\Download.txt"; 
+0

Karthik,我得到了解決方案,我試圖在完全下載之前啓動。所以,它正在腐蝕它。我已經使用後臺下載程序完成了,然後啓動它。謝謝 –

+0

祝你好運@Nitesh! –

+0

謝謝@Karthik –

相關問題