本文介绍了使用XMLTextReader进行C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好我想知道如何使用XMLTextReader读取包含xml文件的文件夹,并获取文件夹中的文件名而不是实际路径。打开任何建议。Hello I would like to know how I can use XMLTextReader to read a folder containing xml files and get the file names in the folder not the actual path. Open to any suggestions.推荐答案DirectoryInfo myDirectory = new DirectoryInfo("Directory path here");//Getting object reference for specified directoryforeach(FileInfo myFile in myDirectory.GetFiles())//here GetFiles() returns array of FileInfo objects{ MessageBox.Show(myFile.Name);//Name - gives just the File Name, not the full path MessageBox.Show(myFile.FullName);//FullName - gives File Name with full path} 这篇关于使用XMLTextReader进行C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-13 00:58