使用 Python 计算目录的大小
在开始自定义实现之前,值得探索现有的解决方案是否可以简化以下任务:确定目录的大小。
使用 os.walk 的建议解决方案
以下 Python 例程熟练地遍历子目录并累积每个文件的大小:
<code class="python">import os def get_size(start_path='.'): total_size = 0 for dirpath, dirnames, filenames in os.walk(start_path): for f in filenames: fp = os.path.join(dirpath, f) # Skip symbolic links if not os.path.islink(fp): total_size += os.path.getsize(fp) return total_size print(get_size(), 'bytes')</code>
使用 os.listdir 的替代单行
要使用一种更快、更简单的排除子目录的方法,请考虑以下单行:
<code class="python">import os sum(os.path.getsize(f) for f in os.listdir('.') if os.path.isfile(f))</code>
参考和进一步优化
更多信息,请参考以下资源:
通过选择预先存在的代码,您可以加快开发过程,同时确保计算目录大小的准确性。
以上是如何在 Python 中计算目录大小:方法比较的详细内容。更多信息请关注PHP中文网其他相关文章!