我在获取所有文件夹和子目录下的所有文件时遇到一些问题..并保留路径..
此时此处是我的代码..
这应该通过一切正确吗?所有子目录和一切?
private List<String> DirSearch(string sDir)
{
List<String> files = new List<String>();
try
{
foreach (string f in Directory.GetFiles(sDir))
{
files.Add(f);
}
foreach (string d in Directory.GetDirectories(sDir))
{
files.AddRange(DirSearch(d));
}
}
catch (System.Exception excpt)
{
MessageBox.Show(excpt.Message);
}
return files;
}
但我得到的只是1个文件夹中的1个随机文件,从根文件夹中有很多子目录。 这就是我所说的:
string folderName = folderBrowserDialog1.SelectedPath;
addFilesFromFolder(DirSearch(folderName));
这是将它们添加到XML文件的方法......
private void addFilesFromFolder(List<string> files)
{
String appDataFolder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData).ToString();
String gpsPath = appDataFolder + "\\GameProfileSaver";
XmlDocument doc = new XmlDocument();
doc.Load(gpsPath + "\\games.xml");
XmlNode fileToAdd = doc.CreateElement("file");
String gName = comboBox1.SelectedItem.ToString();
XmlNode gameName = doc.SelectSingleNode("//games/game[gameName='" + gName + "']/Files");
foreach (string f in files)
{
fileToAdd.InnerText = f;
gameName.AppendChild(fileToAdd);
}
doc.Save(gpsPath + "\\games.xml");
}
答案 0 :(得分:3)
尝试在XmlNode fileToAdd = doc.CreateElement("file");
:
for
XmlDocument doc = new XmlDocument();
doc.Load(gpsPath + "\\games.xml");
String gName = comboBox1.SelectedItem.ToString();
XmlNode gameName = doc.SelectSingleNode("//games/game[gameName='" + gName + "']/Files");
foreach (string f in files)
{
XmlNode fileToAdd = doc.CreateElement("file");
fileToAdd.InnerText = f;
gameName.AppendChild(fileToAdd);
}
我怀疑因为您正在重复使用XmlNode
,所以您只能获取列表中的最后一个文件。