Preperation to xml for InfinityQS export

Now relying on pipeline to copy files from file shares for ghost-pcl and linc-pdfc

pdftext-stripper logic is already ordered and now looping exiting text files is also ordered
This commit is contained in:
2025-08-26 17:09:46 -07:00
parent 3467fb63a0
commit de9842bce4
19 changed files with 481 additions and 99 deletions

View File

@ -128,7 +128,7 @@ public class FileRead : Shared.FileRead, IFileRead
Test[] tests = (from l in descriptions select (Test)l.Test).ToArray();
if (_IsEAFHosted && _FileConnectorConfiguration.FileScanningIntervalInSeconds > 0)
FileCopy(reportFullPath, dateTime, descriptions);
results = new Tuple<string, Test[], JsonElement[], List<FileInfo>>(string.Join(Environment.NewLine, processDataStandardFormat.Logistics[0]), tests, jsonElements, new List<FileInfo>());
results = new Tuple<string, Test[], JsonElement[], List<FileInfo>>(string.Join(Environment.NewLine, processDataStandardFormat.Logistics), tests, jsonElements, new List<FileInfo>());
return results;
}