gpt4 book ai didi

python - 获取 Windows 目录中的每个文件

转载 作者:IT老高 更新时间:2023-10-28 21:11:13 25 4
gpt4 key购买 nike

我在 Windows 7 中有一个文件夹,其中包含多个 .txt 文件。如何将所述目录中的每个文件作为列表获取?

最佳答案

您可以使用 os.listdir(".")列出当前目录的内容(“.”):

for name in os.listdir("."):
if name.endswith(".txt"):
print(name)

如果您希望将整个列表作为 Python 列表,请使用 列表推导:

a = [name for name in os.listdir(".") if name.endswith(".txt")]

关于python - 获取 Windows 目录中的每个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5629242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com