Created
August 27, 2016 13:25
-
-
Save aviatrix/39d48d897a74d5bf3dcb3ccc12c6c474 to your computer and use it in GitHub Desktop.
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
<Query Kind="Statements"> | |
<Reference><RuntimeDirectory>\System.Dynamic.dll</Reference> | |
<Reference><RuntimeDirectory>\System.Dynamic.Runtime.dll</Reference> | |
<Namespace>System</Namespace> | |
<Namespace>System.Collections</Namespace> | |
<Namespace>System.Collections.Generic</Namespace> | |
</Query> | |
var sourceDir = @"D:\Downloads\All Shows\The Big Bang Theory"; | |
var files = Directory.GetFiles(sourceDir,"*",SearchOption.AllDirectories); | |
foreach (var file in files) | |
{ | |
var createdOn = File.GetCreationTime(file); | |
if (createdOn < DateTime.Now.AddMonths(-10)) | |
{ | |
$"deleting {file}".Dump(); | |
File.Delete(file); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment