我是C#.NET的新手。從多個* .resx文件訪問和讀取數據
我需要從我的本地文件夾訪問* .resx文件,然後從每個* .resx文件中檢索數據。 我正在爲此創建一個Windows應用程序。所以首先,一旦我給該文件夾的路徑,它找到了那裏的文件,但現在,我怎樣才能讀取這些文件,並從它們獲取數據到RAM上的臨時數據庫。
私人無效buttonBrowseSource1_Click(對象發件人,EventArgs的)
{
FolderBrowserDialog selectPathDialog = new FolderBrowserDialog();
if (selectPathDialog.ShowDialog() == DialogResult.OK)
{
DirectoryInfo di = new DirectoryInfo(selectPathDialog.SelectedPath);
FileInfo[] RESXFiles = di.GetFiles("*.resx");
if (RESXFiles.Length == 0)
{
UpdateStatus("No RESX files found in this directory. Please check the folder/path again.");
}
else
{
UpdateStatus("Total " + RESXFiles.Length + " RESX files found in this directory.);
textBoxSource1.Text = selectPathDialog.SelectedPath;
}
}
else
{
UpdateStatus("Missing directory! Please try again.");
}
}
太謝謝你了。
「UpdateStatus」是形式豐富的文本框只是爲了顯示狀態信息。 – Indigo