我必须在 Windows Phone 7.1 上的移动应用程序中阅读文本文件。我写我的代码:
IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();
StreamReader Reader = null;
try
{
Reader = new StreamReader(new IsolatedStorageFileStream("folder\\file.txt", FileMode.Open, fileStorage));
string textFile = Reader.ReadToEnd();
textBlock.Text = textFile;
Reader.Close();
}
catch
{
MessageBox.Show("File it not created");
}
一直以来,当我尝试阅读此文件时,应用程序都会向我显示带有文本“未创建文件”的 MessageBox。我不知道为什么应用程序找不到我的文件。