gpt4 book ai didi

python - 查找目录中所有文件的总文件大小

转载 作者:行者123 更新时间:2023-11-30 22:16:22 25 4
gpt4 key购买 nike

目前我正在使用下面的代码来计算目录中所有文件的大小。这很适合我的使用。只是想知道是否有办法让它获取特定文件类型(例如 .py 文件或 .txt)的总文件大小。

total_file = sum(os.path.getsize(f) for f in os.listdir('.') if os.path.isfile(f))

最佳答案

使用str.endswith('.py') (用于过滤 .py 文件):

total_file = sum(os.path.getsize(f) for f in os.listdir('.')
if os.path.isfile(f) and f.endswith('.py'))

关于python - 查找目录中所有文件的总文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49968213/

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