Nice component just .
Needed to adjust ProcessFiles>Preparation to allow for files with periods in their names
Instead of:
InputExtension = String_Split(FileFetch.File.FileName,".")[1].Text.Value
Used:
LastPeriod = Index(FileFetch.File.FileName,".",startIndex:,searchFromEnd: True,ignoreCase:)
InputExtension = Substr(FileFetch.File.FileName,LastPeriod+1,10)
Keith,
The issue has been solved in the latest version (2.0.0)
Kind regards,
Remco Dekkinga
Hi Keith,
Thank you for this feedback. I’ll update the component according your finding and solution.