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:
@ -75,6 +75,7 @@ internal class Convert
|
||||
string[] txtFiles = Directory.GetFiles(sourcePath, $"{sourceFileNameWithoutExtension}_*.txt", SearchOption.TopDirectoryOnly);
|
||||
if (txtFiles.Length != 0)
|
||||
{
|
||||
txtFiles = (from l in txtFiles orderby l.Length, l select l).ToArray();
|
||||
foreach (string txtFile in txtFiles)
|
||||
{
|
||||
sourceFiles.Add(txtFile);
|
||||
|
Reference in New Issue
Block a user