<?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: Sort FTP files using dates in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318579#M88911</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, thanks for your reply,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I step back considering your answer. But i still have an error :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;[statistics] connected
C:\Users\François\Desktop\Test\*TEXT_20180511_1109*.xml (La syntaxe du nom de fichier, de répertoire ou de volume est incorrecte)
[statistics] disconnected&lt;/PRE&gt; 
&lt;P&gt;(translate : syntax of file name, repertory or volumetry is inccorect)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My tjava :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;String suffixe_fichiers = "*.xml";
globalMap.put("yyyyMMdd", TalendDate.getDate("yyyy_MM_dd"));
globalMap.put("TEXT_yyyyMMdd_hhmm", "*TEXT_"+ TalendDate.getDate("yyyyMMdd_hhmm") + suffixe_fichiers);&lt;/PRE&gt; 
&lt;P&gt;My tFTPGet filemask :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;My tFTPFileList&amp;nbsp; filemask:&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;My tfileInputXML filename:&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"C:/Users/François/Desktop/Test/"+((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;Currently on my FTP i have only 2 files to check if he get the latest; they are named :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;TEXT_20180511_0907.xml&lt;BR /&gt;TEXT_20180511_0349.xml&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Do you have any idea how can i fix this ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks a lot&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 May 2018 10:16:42 GMT</pubDate>
    <dc:creator>daez</dc:creator>
    <dc:date>2018-05-11T10:16:42Z</dc:date>
    <item>
      <title>Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318575#M88907</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;Sorry for my english skills, my java skills &amp;amp; my Talend skills that is all pretty new to me &amp;amp; I'm learning everyday here.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I'm currently working on something that I have no idea how the best I should start on. I have an FTP access where they will be files which are named like "TEXT_yyyyMMdd_hhmm". I have to sort get the latest files (so sort by alphabetic I guess?), do some data transform (xml to csv, new column ... = tMap?) then load back on the FTP the files and delete only the oldest.&lt;BR /&gt;So if i have :&lt;/P&gt;
&lt;P&gt;1. TEXT_20180506.xml&lt;BR /&gt;2. TEXT_20180504.xml&lt;BR /&gt;3. TEXT_20180508.xml&lt;BR /&gt;4. .....&lt;BR /&gt;I want to only get the&amp;nbsp;&lt;SPAN&gt;TEXT_20180508.xml , put it in a Tmap &amp;amp; output it on the same FTP with .csv . And once its done, delete the oldest one (TEXT_20180506.xml).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What should be the best way ?&lt;BR /&gt;&lt;BR /&gt;I can only think of tftpconnection &amp;gt; tftpget &amp;gt; tmap (+java code) &amp;gt; outputdelimited but I dont feel it.&lt;BR /&gt;&lt;BR /&gt;Looking for advices; Thanks !&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 14:57:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318575#M88907</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-09T14:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318576#M88908</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;, you need design in below way.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;in tjava you need to set a pattern using below code&lt;/P&gt; 
&lt;P&gt;String pattern_suffixe = "*.xml";&lt;/P&gt; 
&lt;P&gt;globalMap.put("yyyyMMdd", TalendDate.getDate("yyyy_MM_dd"));&lt;/P&gt; 
&lt;P&gt;globalMap.put("pattern", "*&lt;SPAN&gt;TEXT_&lt;/SPAN&gt;"+ TalendDate.getDate("yyyyMMdd") + pattern_suffixe);&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;tFTPget as a file mask you should use ((String)globalMap.get("pattern"))&lt;/P&gt; 
&lt;P&gt;tJava--&amp;gt;On Subjob Ok---&amp;gt;tFTPConnnection--&amp;gt;&lt;SPAN&gt;On Subjob Ok---&amp;gt;&lt;/SPAN&gt;tFTPGet--&amp;gt;&lt;SPAN&gt;On Subjob Ok---&amp;gt;&lt;/SPAN&gt;tFtpList---&amp;gt;&lt;SPAN&gt;On Subjob Ok---&amp;gt;&amp;nbsp;&lt;/SPAN&gt;tXMLinput--&amp;gt;main--&amp;gt;tMap--&amp;gt;tfileoutputdelimitted&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 13:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318576#M88908</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-10T13:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318577#M88909</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, thanks for your time !&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I tried this yesterday and still struggling on so I thought i could ask some help, I did as you said. For the tJava, this is my code (I added this on red) :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;String suffixe_fichiers = "*.xml";

globalMap.put("yyyyMMdd", TalendDate.getDate("yyyy_MM_dd"));

globalMap.put("TEXT_yyyyMMdd_hhmm", "*TEXT_"+ TalendDate.getDate("yyyyMMdd&lt;FONT color="#FF0000"&gt;_hhmm&lt;/FONT&gt;") + suffixe_fichiers);&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;All is working fine but I dont get how it is suppose to get the newest file and delete the oldest, nothing here is comparing the date?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;It only takes &amp;amp; convert the files that equals the current date / hour. IE : If i launch my job at 09:10 at 05/11/2018 it will work only if there is a file named : TEXT_20180511_0910.xml on my FTP.&amp;nbsp;&lt;BR /&gt;Yet, i would like to get the oldest one. How should i do that?&lt;BR /&gt;&lt;BR /&gt;Again, thanks for your time !&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 09:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318577#M88909</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T09:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318578#M88910</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,with logic which i provided to get the lates file.it will not delete the Old files form FTP server.&lt;/P&gt; 
&lt;P&gt;to delete friles from server you need to use tFTPDelete in the tPostjob.&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 09:46:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318578#M88910</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T09:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318579#M88911</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, thanks for your reply,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I step back considering your answer. But i still have an error :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;[statistics] connected
C:\Users\François\Desktop\Test\*TEXT_20180511_1109*.xml (La syntaxe du nom de fichier, de répertoire ou de volume est incorrecte)
[statistics] disconnected&lt;/PRE&gt; 
&lt;P&gt;(translate : syntax of file name, repertory or volumetry is inccorect)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My tjava :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;String suffixe_fichiers = "*.xml";
globalMap.put("yyyyMMdd", TalendDate.getDate("yyyy_MM_dd"));
globalMap.put("TEXT_yyyyMMdd_hhmm", "*TEXT_"+ TalendDate.getDate("yyyyMMdd_hhmm") + suffixe_fichiers);&lt;/PRE&gt; 
&lt;P&gt;My tFTPGet filemask :&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;My tFTPFileList&amp;nbsp; filemask:&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;My tfileInputXML filename:&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"C:/Users/François/Desktop/Test/"+((String)globalMap.get("TEXT_yyyyMMdd_hhmm"))&lt;/PRE&gt; 
&lt;P&gt;Currently on my FTP i have only 2 files to check if he get the latest; they are named :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;TEXT_20180511_0907.xml&lt;BR /&gt;TEXT_20180511_0349.xml&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Do you have any idea how can i fix this ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks a lot&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 10:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318579#M88911</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T10:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318580#M88912</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,which component is failling?&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 10:19:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318580#M88912</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T10:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318581#M88913</link>
      <description>&lt;P&gt;I think its the tFileInputXML, but considering all the code i gave in the last post, the tFTPGET doesnt put anything in my folder too. It only works if i rename the file on FTP with the good dates hour &amp;amp; minutes.&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 10:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318581#M88913</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T10:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318582#M88914</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,if i understand correctly,since you were using hhmm in filename,you should execute the job in same hhmm time other wise it will not pick by tFTPGet.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You need to get the current date files into local directory in tFilelist ,there you can specify the order by in tFileList ,after the filelist use Run if and in the Run if condition specify global paramter of tFileList ((Integer)globalMap.get("tFileList_3_NB_FILE")) ==1&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 11:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318582#M88914</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T11:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318583#M88915</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, really appreciate your time !&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I tried what you did, but I think we are missing something. Full job here &amp;amp; will try to explain after :&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sans titre.png" style="width: 967px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxUB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/129282i956A4FF42E65E20D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxUB.png" alt="0683p000009LxUB.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;What I want the job to do :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;There is 2 files on my FTP, named, files will always be like : "TEXT_yyyyMMdd_hhmm"&amp;nbsp;&lt;BR /&gt;TEXT_20180511_0349.xml&lt;BR /&gt;TEXT_20180511_0907.xml&lt;BR /&gt;&lt;BR /&gt;I want to get the latest one (so&amp;nbsp;&lt;SPAN&gt;TEXT_20180511_0349.xml) and then put it in my tFileInputXML &amp;gt;Tmap ... But for the moment, the tFTPGet doesnt return any files since the tJava get a files with the current date.&lt;BR /&gt;&lt;BR /&gt;But how can the tJava compare the filename BEFORE the tftpGET&amp;nbsp; " give " their names ? Thanks a lot for all.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 11:29:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318583#M88915</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T11:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318584#M88916</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;in java put this.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;globalMap.put("TEXT_yyyyMMdd_hhmm", "*TEXT_"+ TalendDate.getDate("yyyyMMdd") + suffixe_fichiers);&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;then you will get the 2 files in tFTPGet and in tFTPlist order by modified date and order direction is DESC&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;in tFileinputxml,use&amp;nbsp;(String)globalMap.get("tFileList_1_CURRENT_FILEPATH") global variable as file name.&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 11:36:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318584#M88916</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T11:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318585#M88917</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, Now i get 2 files with my tFTPGet. But I dont see any order/sort possibilites with my settings on tFTPFileList. So it doesnt order at all and my tFileInputXML return a "null" for :&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;(String)globalMap.get("tFileList_1_CURRENT_FILEPATH")&amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;Here is a screenshot :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sans titre.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxYh.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/132130i45347DB8414B602F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxYh.png" alt="0683p000009LxYh.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks !&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 12:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318585#M88917</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T12:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318586#M88918</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,you should use tFilelist not tFTPFileList&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 12:29:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318586#M88918</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T12:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318587#M88919</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,please find the below after&amp;nbsp;the first file has processed you need to abort the job since this way.&lt;/P&gt; 
&lt;P&gt;instead of&amp;nbsp; tJava place,you should use your logic to convert xml to csv.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 784px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LxZ0.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140308i5D2CC6331DFE58CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LxZ0.png" alt="0683p000009LxZ0.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 12:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318587#M88919</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T12:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318588#M88920</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;&amp;nbsp;, Oh my bad I thought it was FTPFileList. Its now working all fine, thanks a lot !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 13:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318588#M88920</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T13:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318589#M88921</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,please accept solution and also provide Kudos&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 13:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318589#M88921</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T13:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318590#M88922</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;, Yes i was about to do that, i just didnt see your last post before i reply, why should I add a tdie?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I added a tdie after my tFileOutput with the link " on component OK " but I have no "iterate " row like yours, I dont understand what it does.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 13:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318590#M88922</guid>
      <dc:creator>daez</dc:creator>
      <dc:date>2018-05-11T13:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Sort FTP files using dates</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318591#M88923</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOMwAAO"&gt;@daez&lt;/A&gt;,if you do not want to iterate use tdie.otherwise do not use.&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 13:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Sort-FTP-files-using-dates/m-p/2318591#M88923</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-05-11T13:39:36Z</dc:date>
    </item>
  </channel>
</rss>

