I'm looking for a way to specifically GetFiles that have a specific name AND that have been created within a certain time limit, however I can't figure out how to use both criteria in the same statement, or to find another method to accomplish this.
Here's my code so far:
DirectoryInfo dir = new DirectoryInfo(folderPath);
FileInfo[] files = dir.GetFiles("ArchiveDeleteLog*" , SearchOption.TopDirectoryOnly);