Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have another process not working since the Upgrade to Talend 8 & Java 11. tFTPFileList is not picking up a file with spaces in. Once I remove the space, its happy to pick it up.
FileMask - PAY_*.txt
FileName - PAY_CLMS _2022-10-10T153819.txt
(Space is after CLMS)
I'd recommend using a regex for this. Looking at what you want, I'd say something like this should work....
(PAY_)(.)*(\.txt)
I seldom use wildcards for stuff like this as they can be prone to unexpected results when working with Java.