通过python按大小排序文件列表

时间:2009-12-10 06:42:13

标签: python arrays hash dictionary

目录列表中的转储示例:

hello:3.1 GB
world:1.2 MB
foo:956.2 KB

以上列表的格式为FILE:VALUE UNIT。如何根据文件大小对上面的每一行进行排序?

我想也许可以通过模式“:VALUE UNIT”(或以某种方式使用分隔符)解析单元的每一行,然后通过ConvertAll engine运行它,从字节中接收每个值的大小,哈希吧与行的其余部分(文件名)一起,然后通过大小对结果字典对进行排序。

麻烦的是,我不知道模式匹配。但我发现你可以对dictionary

进行排序

如果有更好的方向来解决这个问题,请告诉我。


修改

我所拥有的列表实际上是在一个文件中。从(真棒)Alex Martelli的答案中获取灵感,我写了以下代码,从一个文件中提取,命令并写入另一个文件。

#!/usr/bin/env python

sourceFile = open("SOURCE_FILE_HERE", "r")
allLines = sourceFile.readlines()
sourceFile.close()

print "Reading the entire file into a list."

cleanLines = []

for line in allLines:
    cleanLines.append(line.rstrip())

mult = dict(KB=2**10, MB=2**20, GB=2**30)

def getsize(aline):
  fn, size = aline.split(':', 1)
  value, unit = size.split(' ')
  multiplier = mult[unit]
  return float(value) * multiplier

print "Writing sorted list to file."

cleanLines.sort(key=getsize)

writeLines = open("WRITE_OUT_FILE_HERE",'a')

for line in cleanLines:
    writeLines.write(line+"\n")

writeLines.close()

1 个答案:

答案 0 :(得分:10)

thelines = ['hello:3.1 GB', 'world:1.2 MB', 'foo:956.2 KB']

mult = dict(KB=2**10, MB=2**20, GB=2**30)

def getsize(aline):
  fn, size = aline.split(':', 1)
  value, unit = size.split(' ')
  multiplier = mult[unit]
  return float(value) * multiplier

thelines.sort(key=getsize)
print thelines

根据需要发出['foo:956.2 KB', 'world:1.2 MB', 'hello:3.1 GB']。如果KB,MB和GB当然没有耗尽您感兴趣的单位,您可能需要向mult添加一些条目。