在 Python 中从 CSV 中的文件夹写入 XML 文件名

发布于 2025-01-09 11:21:19 字数 287 浏览 0 评论 0原文

我有文件夹 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2025-01-16 11:21:19

获取仅包含文件名的列表的方法:

import pathlib
files = [file.name for file in pathlib.Path(r"C:\temp").glob("*.xml")]

csv 模块的文档 有一些关于如何编写 .csv 文件的示例

A way to get a list of only the filenames:

import pathlib
files = [file.name for file in pathlib.Path(r"C:\temp").glob("*.xml")]

The documentation for the csv module has some examples on how to write a .csv file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文