<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: tFileList exclude mask in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319404#M89652</link>
    <description>You dont need the brackets "(" around it. This works:&lt;BR /&gt;"000*,001*"</description>
    <pubDate>Tue, 06 Dec 2016 15:09:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-12-06T15:09:37Z</dc:date>
    <item>
      <title>tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319395#M89643</link>
      <description>Hi, Is it possible to use more than one tFileList exclude mak and how could I do that if possible?</description>
      <pubDate>Sat, 16 Nov 2024 13:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319395#M89643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319396#M89644</link>
      <description>Since the exclude fileMask is a regular expression, you can write your exclude filemask like this : 
&lt;BR /&gt; 
&lt;PRE&gt;"(*.txt)|(*.pdf)|(*.doc)"&lt;/PRE&gt; 
&lt;BR /&gt;it should exclude txt, pdf and doc files (for example). 
&lt;BR /&gt;Note : I wrote a java regular expression, but the filemask is waiting for a Glob regular expression. Since I don't know theses expressions, I can't certify the syntax.</description>
      <pubDate>Wed, 27 May 2009 16:57:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319396#M89644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-27T16:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319397#M89645</link>
      <description>Works perfectly, thanks a lot!
&lt;BR /&gt;Edit: that was a little too fast, in fact it doesn't work! Thanks anywa for your help, but the topic is still opened</description>
      <pubDate>Thu, 28 May 2009 08:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319397#M89645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-28T08:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319398#M89646</link>
      <description>I checked it : the idea was correct but not the syntax 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Here is the good method with a java job : 
&lt;BR /&gt;1) uncheck the "use glob regular expression checkbox" (basic settings) 
&lt;BR /&gt;2) in "filemask", put a single line ".*" (the default "*" filemask does not compile when "glob expression" are desactivated). Of course, this pattern can be replaced by another (and by more than one line), but with a JAVA regular expressions (".+\\.wav" to allow the wav files, for example). 
&lt;BR /&gt;3) in "exclude filemask", this is the good syntax to exclude txt, doc and pdf files : 
&lt;BR /&gt; 
&lt;PRE&gt;"(.+\\.txt)|(.+\\.pdf)|(.+\\.doc)"&lt;/PRE&gt; 
&lt;BR /&gt;I tested it in a real Talend job and it works. 
&lt;BR /&gt;If I have some time, I will modify the tFileList component to allow a list of glob exclude patterns (they are easier to write).</description>
      <pubDate>Thu, 28 May 2009 23:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319398#M89646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-28T23:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319399#M89647</link>
      <description>Ok, thanks a lot and by the way, a list of glob exclude masks would be great!&lt;BR /&gt;Diane</description>
      <pubDate>Fri, 29 May 2009 08:18:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319399#M89647</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-29T08:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319400#M89648</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Ok, thanks a lot and by the way, a list of glob exclude masks would be great!&lt;BR /&gt;Diane&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;It's done ! 
&lt;BR /&gt;You can try this component : 
&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCsUaCAK" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Installing-and-Upgrading/Use-tFileInputXML-for-reading-process-lt-job-gt-item-xml-file/td-p/57542&lt;/A&gt;</description>
      <pubDate>Thu, 04 Jun 2009 12:44:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319400#M89648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-04T12:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319401#M89649</link>
      <description>Great I didn't check my posts for a while, thanks a lot</description>
      <pubDate>Fri, 19 Jun 2009 15:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319401#M89649</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-19T15:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319402#M89650</link>
      <description>I looked into the generated source code:
&lt;BR /&gt;
&lt;PRE&gt;for (String excludefilemaskEach_tFileList_1 : excludefilemask_tFileList_1.split(",")) {}&lt;/PRE&gt;
&lt;BR /&gt;It gives a hint for the correct glob exclude syntax:
&lt;BR /&gt;
&lt;PRE&gt;"*.txt,*.pdf,*.doc"&lt;/PRE&gt;
&lt;BR /&gt;Of course, I tested it and it works. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Fri, 18 Apr 2014 10:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319402#M89650</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2014-04-18T10:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319403#M89651</link>
      <description>Hi,&lt;BR /&gt;Thank, the good way to exclude file is with comma : "(myexcludedfile.*),(myotherexcludedfile.*)"</description>
      <pubDate>Wed, 28 Jan 2015 10:39:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319403#M89651</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2015-01-28T10:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: tFileList exclude mask</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319404#M89652</link>
      <description>You dont need the brackets "(" around it. This works:&lt;BR /&gt;"000*,001*"</description>
      <pubDate>Tue, 06 Dec 2016 15:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileList-exclude-mask/m-p/2319404#M89652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-06T15:09:37Z</dc:date>
    </item>
  </channel>
</rss>

