统计目录下的文件并逐个循环

发布于 2025-01-09 14:41:13 字数 326 浏览 0 评论 0原文

我在一个目录中有一些不同格式的文件,但我只想读取 .txt 文件并根据计数打印,

示例:(one.txt,two.txt, Three.txt,four.txt,one.xlsx ,two.xlsx)

这里我想统计.txt文件的数量并一一读取所有.txt文件,这里计数是4

读取文件one.txt

print("hello")

读取文件two.txt

print("hello" )

读取文件三.txt

print("hello")

读取文件 four.txt

print("hello")

I have some different format files in a one directory, but i want to read only .txt file and print the based on the count ,

Example: (one.txt,two.txt,three.txt,four.txt,one.xlsx,two.xlsx)

here i want to count the .txt files and read all .txt file one by one , here the count is 4

read file one.txt

print("hello")

read file two.txt

print("hello")

read file three.txt

print("hello")

read file four.txt

print("hello")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏有森光若流苏 2025-01-16 14:41:13

您可以使用标准库中的 pathlib 包:

from pathlib import Path
myfolder = Path("PATH_TO_YOUR_FOLDER")
txt_files = [p for p in myfolder.iterdir() if p.suffix == ".txt"]
print("Total number of txt files:", len(txt_files)

You can use pathlib package from the standard library:

from pathlib import Path
myfolder = Path("PATH_TO_YOUR_FOLDER")
txt_files = [p for p in myfolder.iterdir() if p.suffix == ".txt"]
print("Total number of txt files:", len(txt_files)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文