我正在使用以下函数从目标目录向下获取系统中的所有文件大小。
def get_files(target):
# Get file size and modified time for all files from the target directory and down.
# Initialize files list
filelist = []
# Walk the directory structure
for root, dirs, files in os.walk(target):
# Do not walk into directories that are mount points
dirs[:] = filter(lambda dir: not os.path.ismount(os.path.join(root, dir)), dirs)
for name in files:
# Construct absolute path for files
filename = os.path.join(root, name)
# Test the path to account for broken symlinks
if os.path.exists(filename):
# File size information in bytes
size = float(os.path.getsize(filename))
# Get the modified time of the file
mtime = os.path.getmtime(filename)
# Create a tuple of filename, size, and modified time
construct = filename, size, str(datetime.datetime.fromtimestamp(mtime))
# Add the tuple to the master filelist
filelist.append(construct)
return(filelist)
如何修改它以包含包含目录和目录总大小的第二个列表?我试图将此操作包含在一个函数中,希望比在单独的函数中执行第二次遍历以获取目录信息和大小更有效。
这个想法是能够报告前 20 个最大文件的排序列表,以及前 10 个最大目录的第二个排序列表。
感谢你们的任何建议。