在 Python 中从 CSV 中的文件夹写入 XML 文件名
我有文件夹 C:\test_xml
,其中有 XML
文件列表。我想获取所有 xml 文件名并将其存储在 csv 文件 xml_file.csv
中。我正在尝试使用下面的 Python 代码,但不知道如何继续,因为我对 Python 还很陌生。
import os
import glob
files = list(glob.glob(os.path.join('C:\temp','*.xml')))
print (files)
I have folder C:\test_xml
where i have list of XML
files. I want to get all the xml file names and store this in csv file xml_file.csv
. I am trying with below Python code but dont know how to proceed as i am quiet new in Python.
import os
import glob
files = list(glob.glob(os.path.join('C:\temp','*.xml')))
print (files)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取仅包含文件名的列表的方法:
csv 模块的文档 有一些关于如何编写 .csv 文件的示例
A way to get a list of only the filenames:
The documentation for the csv module has some examples on how to write a .csv file