<?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 Iterate over multiple files and create output by file name in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2522882#M147713</link>
    <description>&lt;P&gt;Hello Team,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope you can help me with the following problem in talend studio:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I have several files in a directory, and I need to join them by file name. This will generate an output containing the iterated file names.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;1-1000739.out&lt;BR /&gt;2-1000739.out&lt;BR /&gt;3-1000739.out&lt;BR /&gt;4-1000739.out&lt;BR /&gt;I need a single file to be created with the union of the 4 files and with the name: Output_1000739.json&lt;BR /&gt;and so on with the rest of the files found in the directory:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1-1000687.out&lt;BR /&gt;2-1000687.out&lt;BR /&gt;3-1000687.out&lt;BR /&gt;4-1000687.out&lt;/P&gt;
&lt;P&gt;Output_1000687.json&lt;/P&gt;
&lt;P&gt;I have a Subjob:&lt;/P&gt;
&lt;P&gt;t_Filelits --&amp;gt;Iterate--&amp;gt;tFileInputRow--&amp;gt;tFileOutputDelimited(check Append option)&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But it joins all the files into one.&amp;nbsp;&lt;BR /&gt;Any ideas to solve this?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jul 2025 18:58:27 GMT</pubDate>
    <dc:creator>MDVV</dc:creator>
    <dc:date>2025-07-01T18:58:27Z</dc:date>
    <item>
      <title>Iterate over multiple files and create output by file name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2522882#M147713</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope you can help me with the following problem in talend studio:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I have several files in a directory, and I need to join them by file name. This will generate an output containing the iterated file names.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;1-1000739.out&lt;BR /&gt;2-1000739.out&lt;BR /&gt;3-1000739.out&lt;BR /&gt;4-1000739.out&lt;BR /&gt;I need a single file to be created with the union of the 4 files and with the name: Output_1000739.json&lt;BR /&gt;and so on with the rest of the files found in the directory:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1-1000687.out&lt;BR /&gt;2-1000687.out&lt;BR /&gt;3-1000687.out&lt;BR /&gt;4-1000687.out&lt;/P&gt;
&lt;P&gt;Output_1000687.json&lt;/P&gt;
&lt;P&gt;I have a Subjob:&lt;/P&gt;
&lt;P&gt;t_Filelits --&amp;gt;Iterate--&amp;gt;tFileInputRow--&amp;gt;tFileOutputDelimited(check Append option)&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But it joins all the files into one.&amp;nbsp;&lt;BR /&gt;Any ideas to solve this?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 18:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2522882#M147713</guid>
      <dc:creator>MDVV</dc:creator>
      <dc:date>2025-07-01T18:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Iterate over multiple files and create output by file name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2522941#M147714</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/340174"&gt;@MDVV&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You have the logic but what is missing is first a way of iterating only for a given "identifier" like "&lt;SPAN&gt;1000739" or "1000687"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What I would do is first : setup a tFileList to list all files that are like "*.out"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then you can use a tJavaRow do apply this transformation and keep all the "identifier" in memory :&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;String fileName = input_row.currentFileName; // e.g., 1-1000739.out
String[] parts = fileName.split("-");
String idPart = parts[1].replace(".out", ""); // 1000739
output_row.filePath = input_row.currentFilePath;
output_row.identifier = idPart;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After this, setup a tUniqRow to keep only 1 occurence of each identifier and then add a tFlowToIterate (this way you can iterate over the uniques rows) then you can do your current flow :&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;tFileList (add a filemask to use the current identifier from the tFlowToIterate) --&amp;gt;Iterate--&amp;gt;tFileInputRow--&amp;gt;tFileOutputDelimited (check Append option)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope this is clear enough&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- Quentin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 07:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2522941#M147714</guid>
      <dc:creator>quentin-vigne</dc:creator>
      <dc:date>2025-07-02T07:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Iterate over multiple files and create output by file name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523025#M147716</link>
      <description>&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Hello, thanks for your response&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/266796"&gt;@quentin-vigne&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;&amp;nbsp;I tried two options following your recommendation.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Option 1. With tJavaRow, which cannot be connected to a tFilelist, so I connected it to tFileInputRow (my files are not formatted).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;&lt;FONT face="andale mono,times"&gt; The tJavaRow code is as follows:&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV style="background-color: #ffffff; padding: 0px 0px 0px 2px;"&gt;
&lt;DIV style="color: #000000; background-color: #ffffff; font-family: 'courier'; font-size: 10pt; white-space: pre;"&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;fileName&lt;/SPAN&gt;&lt;SPAN&gt; = ((String)&lt;/SPAN&gt;&lt;SPAN&gt;globalMap&lt;/SPAN&gt;&lt;SPAN&gt;.get(&lt;/SPAN&gt;&lt;SPAN&gt;"tFileList_6_CURRENT_FILE"&lt;/SPAN&gt;&lt;SPAN&gt;));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String[] &lt;/SPAN&gt;&lt;SPAN&gt;parts&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;fileName&lt;/SPAN&gt;&lt;SPAN&gt;.split(&lt;/SPAN&gt;&lt;SPAN&gt;"-"&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;idPart&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;parts&lt;/SPAN&gt;&lt;SPAN&gt;[1].replace(&lt;/SPAN&gt;&lt;SPAN&gt;".out"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;); &lt;/SPAN&gt;&lt;SPAN&gt;// 1000739&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;output_row&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;content&lt;/SPAN&gt;&lt;SPAN&gt; = ((String)&lt;/SPAN&gt;&lt;SPAN&gt;globalMap&lt;/SPAN&gt;&lt;SPAN&gt;.get(&lt;/SPAN&gt;&lt;SPAN&gt;"tFileList_6_CURRENT_FILEPATH"&lt;/SPAN&gt;&lt;SPAN&gt;));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;output_row&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;content&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;idPart&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;and the subjob is as follows: &lt;/SPAN&gt;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MDVV_0-1751487702513.png" style="width: 476px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/181794iEFAF1EADD7F06427/image-dimensions/476x44?v=v2" width="476" height="44" role="button" title="MDVV_0-1751487702513.png" alt="MDVV_0-1751487702513.png" /&gt;&lt;/span&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;The file returns the append of all the source files (.out).&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Option 2. With tjava, which can be connected or not to a previous transformation.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;The tjava code is as follows:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV style="background-color: #ffffff; padding: 0px 0px 0px 2px;"&gt;
&lt;DIV style="color: #000000; background-color: #ffffff; font-family: 'courier'; font-size: 10pt; white-space: pre;"&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;fileName&lt;/SPAN&gt;&lt;SPAN&gt; = ((String)&lt;/SPAN&gt;&lt;SPAN&gt;globalMap&lt;/SPAN&gt;&lt;SPAN&gt;.get(&lt;/SPAN&gt;&lt;SPAN&gt;"tFileList_9_CURRENT_FILE"&lt;/SPAN&gt;&lt;SPAN&gt;)); &lt;/SPAN&gt;&lt;SPAN&gt;// e.g., 1-1000739.out&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String[] &lt;/SPAN&gt;&lt;SPAN&gt;parts&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;fileName&lt;/SPAN&gt;&lt;SPAN&gt;.split(&lt;/SPAN&gt;&lt;SPAN&gt;"-"&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;idPart&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;parts&lt;/SPAN&gt;&lt;SPAN&gt;[1].replace(&lt;/SPAN&gt;&lt;SPAN&gt;".out"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;); &lt;/SPAN&gt;&lt;SPAN&gt;// 1000739&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;filePath&lt;/SPAN&gt;&lt;SPAN&gt; = ((String)&lt;/SPAN&gt;&lt;SPAN&gt;globalMap&lt;/SPAN&gt;&lt;SPAN&gt;.get(&lt;/SPAN&gt;&lt;SPAN&gt;"tFileList_9_CURRENT_FILEPATH"&lt;/SPAN&gt;&lt;SPAN&gt;));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;String &lt;/SPAN&gt;&lt;SPAN&gt;identifier&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;idPart&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;and the subjob is as follows:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MDVV_1-1751488277704.png" style="width: 530px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/181795iFF86F870705F3C2B/image-dimensions/530x41?v=v2" width="530" height="41" role="button" title="MDVV_1-1751488277704.png" alt="MDVV_1-1751488277704.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;SPAN&gt;With this option, it also returns a single output file with the append of all the source files. &lt;BR /&gt;I've been trying to resolve this issue for weeks. I'm new to Talend, and it's been very complicated.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Jul 2025 20:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523025#M147716</guid>
      <dc:creator>MDVV</dc:creator>
      <dc:date>2025-07-02T20:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Iterate over multiple files and create output by file name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523057#M147720</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/340174"&gt;@MDVV&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I managed to do it with a change : In my first post I forgot to use the tIterateToFlow.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quentinvigne_0-1751530124235.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/181798i16877378FE80EEB7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="quentinvigne_0-1751530124235.png" alt="quentinvigne_0-1751530124235.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;First of all :&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;tFileList_1 : add a file mask with "*.out". This way this component will list only desired files in your directory&lt;/LI&gt;&lt;LI&gt;tIterateToFlow_1 : This way you will transform the list of files in your directory to a simple row. Don't forget to add a column "CURRENT_FILE" for example with a value of&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="markup"&gt;((String)globalMap.get("tFileList_1_CURRENT_FILE"))​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Then you cann the tJavaRow I was talking about with this code :&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;String fileName = input_row.CURRENT_FILE; // e.g., 1-1000739.out
String[] parts = fileName.split("-");
String idPart = parts[1].replace(".out", ""); // 1000739
output_row.identifier = idPart;​&lt;/LI-CODE&gt;&lt;P&gt;Edit the schema and add to the output a column named "identifier". You can also change it later if you want but you will have to change the outpur_row.identifier in the code.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Then add the tUniqRow and check the "Key attribute" for identifier column.&lt;/LI&gt;&lt;LI&gt;Add a tFlowToIterate to start an iteration over the uniques values of your files&lt;/LI&gt;&lt;LI&gt;Add a tFileList with a file mask having this value :&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;"*" + ((String)globalMap.get("row3.identifier")) + ".out"​&lt;/LI-CODE&gt;&lt;P&gt;with this we list every file that are like "*&lt;SPAN&gt;1000739.out" for example&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Add your tFileInputRaw and fill in filename with the global variable :&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;((String)globalMap.get("tFileList_2_CURRENT_FILEPATH"))&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;Now you can finally add the tFileOutputDelimited with the output filename being&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;"C:/TalendWorkspace/test/Output_" + ((String)globalMap.get("row3.identifier")) + ".json"​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used some test file and it works on my end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a good day&lt;/P&gt;&lt;P&gt;- Quentin&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 08:23:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523057#M147720</guid>
      <dc:creator>quentin-vigne</dc:creator>
      <dc:date>2025-07-03T08:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Iterate over multiple files and create output by file name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523135#M147721</link>
      <description>&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Your recommendation worked!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt; Thank you so much for sharing your knowledge!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt; Thanks in advance!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 00:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Iterate-over-multiple-files-and-create-output-by-file-name/m-p/2523135#M147721</guid>
      <dc:creator>MDVV</dc:creator>
      <dc:date>2025-07-04T00:16:28Z</dc:date>
    </item>
  </channel>
</rss>

