摘要: 1. 检索文件夹大小的程序 # 要求执行方式如下 # python3.8 run.py 文件夹 import os import sys def get_file_size(files_path, size=0): for file in os.listdir(files_path): file = 阅读全文
posted @ 2021-01-08 15:21 Avery_W 阅读(93) 评论(0) 推荐(0)