/// <summary> /// Loop through file pattern, return matches as list of full file paths /// </summary> /// <param name="FilePattern"></param> /// <param name="IncludeFolders"></param> /// <param name="Recurse"></param> /// <returns></returns> public static List <string> FileListLoop(this string FilePattern, bool IncludeFolders = false, bool Recurse = false) { _AHK ahk = new _AHK(); return(ahk.FileListLoop(FilePattern, IncludeFolders, Recurse)); }