Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
SHTalend
Contributor
Contributor

tFTPFileList - Filemask not picking up file with spaces in

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)

0695b00000WwaDtAAJ.png

Labels (2)
1 Reply
Anonymous
Not applicable

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.