1 using System.Collections.Generic;
5 namespace DirectOutput.General
17 public List<FileInfo> GetMatchingFiles(Dictionary<string, string> ReplaceValues=null)
19 List<FileInfo> L =
new List<FileInfo>();
22 foreach (FileInfo FI
in PL)
24 if (!L.Any(x=>x.FullName==FI.FullName))
39 public FileInfo GetFirstMatchingFile(Dictionary<string, string> ReplaceValues = null)