Created
November 3, 2011 18:45
-
-
Save copenhas/1337394 to your computer and use it in GitHub Desktop.
extension methods!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Directory.EnumerateFiles(_backupdir) | |
.Select(f => new FileInfo(f)) | |
.Where(f => f.CreationTime < DateTime.Now.AddMonths(-1)) | |
.ForEach(f => f.Delete()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment