2014-04-07 96 views
0

我在我的Windows Phone 8應用程序中的共享/傳輸/文件夾中有一些文件。現在我需要檢查這些文件的存在。我使用這種方法。在Windows Phone 8應用程序中的文件存在檢查

File.Exists("shared/transfers/" + fileName); 

但是,即使該文件當前存在,該方法始終返回false。該怎麼辦?

回答

0

檢查,如果這個工程

string fileName = "/shared/transfers/filename"; 
string localPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, fileName); 
if (await File.FileExistsInPath(localPath)) 
+0

是的!謝謝:) 我認爲,而不是使用File.FileExistsInPath(localPath),您也可以使用File.Exists()方法。 – ssakash

+0

還沒有嘗試過,但會做。感謝您接受答案!乾杯! –

相關問題