1
vote
how to sort list of FileInfo in IronPython
The Pythonic way of doing this would be:
fileInfos = list(DirectoryInfo(path).GetFiles())
fileInfos.sort(key=lambda f: f.CreationTime, reverse=True)
The list sort …
