sumSize

  • python基础 — os模块

    获取指定文件夹的大小: 方法1:使用递归: import os def getTotalSize(path): sumSize = 0 if os.path.isdir(path)…

    python 2022年7月9日