I have a job using get ftp files, i am using this wildcard to fetch all the xml.zip files
.*.zip
Works ok, but downloads all the files. I tried a wildcard to download only files with this pattern: .outsideXXXXXX.xml.zip (with no success).
.outside\*.zip
What i am doing wrong?
Finally i found the solution:
FYI: pentaho pdi regexp are based on java.util.regex package. The exact syntax for creating regular expressions is defined in the java.util.regex.Pattern javadoc.
https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html