Deleting files, keeping a few -- in Python
And the same again, only as a script, just because:
If there wasn't that comparison function to write, it'd be terser...
Diary, commentary, reviews, snippets to preserve on-line
And the same again, only as a script, just because:
If there wasn't that comparison function to write, it'd be terser...
Previous instalments at Life before Blogging.
Forum Administrator : EvaGeeks.org — An Evangelion Fan Community
Copyright © Steve Gilham, 2003-2013
This work is licensed under a Creative Commons License.
Code snippets released under the WTFPL
1 comment :
Changing fcompare to:
fcompare = lambda x,y: cmp(os.path.getmtime(x), os.path.getmtime(y))
makes it a two-liner...
Post a Comment