<?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: File name with a timestamp in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293891#M66823</link>
    <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP3BAAW"&gt;@Puspanjali12&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;Could you please let us know the exact format you are looking?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;Then we can suggest the corresponding format to you.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Feb 2019 11:12:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-02-21T11:12:06Z</dc:date>
    <item>
      <title>File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293881#M66813</link>
      <description>Hi, 
&lt;BR /&gt;I have one question. 
&lt;BR /&gt;I want to give my file's name with a time stamp 
&lt;BR /&gt;It will be like "filename_yyyyMMdd_HHmm.dat" 
&lt;BR /&gt;But I have to find this file again in the job so, I want to store the "yyyyMMdd_HHmm" value in a context or variable. 
&lt;BR /&gt;and assign that context or variable to the file name. 
&lt;BR /&gt;Can you direct me how it can be done??? 
&lt;BR /&gt;I've tried making a context of type string whose value is TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate()) 
&lt;BR /&gt;But when i run it i got a file not found exception (I'm to create a file not find for the first time). 
&lt;BR /&gt;and I think the context returns as a string of "TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate())" not the actural date time value. 
&lt;BR /&gt;Thank You.</description>
      <pubDate>Sat, 16 Nov 2024 12:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293881#M66813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293882#M66814</link>
      <description>Hi Kyaw,
&lt;BR /&gt;you have to set the content of the context variable in the running job by using the "Context Load" component.
&lt;BR /&gt;At the start of the job insert a tFixedFlowInput Component and a "Context Load" Component.
&lt;BR /&gt;Establish a "main" link from fixedFlowInput to the ContextLoad and set the schema of the fixedFlowInput equal to the ContextLoad.
&lt;BR /&gt;In the fixedflowInput enter one row. In the "key" Field enter a String with the name of your context variable. In the value field enter the Expression TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate()).
&lt;BR /&gt;When you run the job, the context will be set dynamically with the actual time in the given format.</description>
      <pubDate>Tue, 02 Aug 2011 13:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293882#M66814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T13:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293883#M66815</link>
      <description>Hi
&lt;BR /&gt;Or you could make a context variable - I called it filename (String). 
&lt;BR /&gt;and before you save the file add a tjava component. In this component paste the following Code
&lt;BR /&gt;
&lt;PRE&gt;context.filename = "filename_"+TalendDate.getDate("yyyyMMdd_HHmm")+".dat";&lt;/PRE&gt;
&lt;BR /&gt;and whenever you need to use the name simply just use it as you would a normal context by typing context.filename</description>
      <pubDate>Tue, 02 Aug 2011 14:17:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293883#M66815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T14:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293884#M66816</link>
      <description>Hi Kyaw Lwin Phyo,&lt;BR /&gt;so first of all I created tLoop, context variable named timeStamp, then somewhere in process I asigned it the value of current time using tJava component and connected it to the first iteration&lt;BR /&gt;&lt;PRE&gt;context.timeStamp = TalendDate.formatDate("yyyyMMdd_HHmmssSSS",TalendDate.getCurrentDate());&lt;/PRE&gt;&lt;BR /&gt;then I just used tRowGenerator to generate random ascii values for the tFileOutputDelimited and that's it. &lt;BR /&gt;Ladislav</description>
      <pubDate>Tue, 02 Aug 2011 14:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293884#M66816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T14:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293885#M66817</link>
      <description>Instead, No need of Context Variable or Context load component.&amp;nbsp; 
&lt;BR /&gt;Directly provide the expression in the filename property - it works 
&lt;BR /&gt;"D:/filedirectory/fileout_"+TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate())+".csv"</description>
      <pubDate>Thu, 29 Jan 2015 07:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293885#M66817</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2015-01-29T07:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293886#M66818</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Instead, No need of Context Variable or Context load component.&amp;nbsp;&lt;BR /&gt;Directly provide the expression in the filename property - it works&lt;BR /&gt;"D:/filedirectory/fileout_"+TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate())+".csv"&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;A W E S O M E ! 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 14 Apr 2015 15:40:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293886#M66818</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2015-04-14T15:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293887#M66819</link>
      <description>if u want ur output file with time stamp try this one: 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDqS.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155500iADCDF3138B6425C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDqS.png" alt="0683p000009MDqS.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009ME1J.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130533i4ED9560E70516716/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009ME1J.png" alt="0683p000009ME1J.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 14 Apr 2015 17:38:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293887#M66819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-14T17:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293888#M66820</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Instead, No need of Context Variable or Context load component.&amp;nbsp;&lt;BR /&gt;Directly provide the expression in the filename property - it works&lt;BR /&gt;"D:/filedirectory/fileout_"+TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate())+".csv"&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;It worked perfectly. Thank You&amp;nbsp; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 30 Mar 2016 19:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293888#M66820</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-30T19:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293889#M66821</link>
      <description>Do we have any option for giving regular expression in file path</description>
      <pubDate>Wed, 20 Apr 2016 12:41:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293889#M66821</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-20T12:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293890#M66822</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please let me know how can we append the date to the file name in cst format?&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>Thu, 21 Feb 2019 10:32:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293890#M66822</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T10:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293891#M66823</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP3BAAW"&gt;@Puspanjali12&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;Could you please let us know the exact format you are looking?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;Then we can suggest the corresponding format to you.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 11:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293891#M66823</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T11:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293892#M66824</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000006eKOgAAM"&gt;@nthampi&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I want to append the current date in a filename and the date should be in CST timezone.&lt;BR /&gt;for ex:&amp;nbsp;data02212019051444&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt; 
&lt;P&gt;Puspanjali&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 11:15:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293892#M66824</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T11:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293893#M66825</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP3BAAW"&gt;@Puspanjali12&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Please refer the below diagram.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 900px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3Ga.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153221iD211E1A2A44C7EF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3Ga.png" alt="0683p000009M3Ga.png" /&gt;&lt;/span&gt;&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;I have used the java libraray joda-time and the screen shots for tlibraryload are as below.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 938px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3Hr.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142229i380448D4F4DE6CB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3Hr.png" alt="0683p000009M3Hr.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&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-center" image-alt="image.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3Hw.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156931iE4E3DB93B27B27F1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3Hw.png" alt="0683p000009M3Hw.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt; import org.joda.time.DateTime;
 import org.joda.time.DateTimeZone;
 import org.joda.time.format.DateTimeFormatter;
 import org.joda.time.format.DateTimeFormat;&lt;/PRE&gt; 
&lt;P&gt;tMap screenshot is as below.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M3I1.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146578i01F169C0AF1A7E7D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M3I1.png" alt="0683p000009M3I1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;row1.input+DateTime.now(DateTimeZone.forID( "America/Chicago" ) ).toString(DateTimeFormat.forPattern("MMddyyyyHHmmss"))&lt;/PRE&gt; 
&lt;P&gt;And you got the answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Please spare a second to mark the topic as resolved. Kudos are also welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 12:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293893#M66825</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T12:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293894#M66826</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000006eKOgAAM"&gt;@nthampi&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks. It's working!!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 13:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293894#M66826</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T13:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293895#M66827</link>
      <description>The best for me&lt;BR /&gt;</description>
      <pubDate>Sat, 23 Mar 2019 13:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293895#M66827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-23T13:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293896#M66828</link>
      <description>&lt;P&gt;excelent...!&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;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lveq"&gt;filename with datestamp.png&lt;/A&gt;</description>
      <pubDate>Wed, 12 Jun 2019 00:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293896#M66828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-12T00:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293897#M66829</link>
      <description>&lt;P&gt;Hey hi @pariyarath Kiran​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution is working perfectly when we give it in a file path, but I want to use context variable and while I am giving this path in a context variable, it's not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do you have any idea about this? &lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sheetal&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 15:44:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293897#M66829</guid>
      <dc:creator>SJeshwani1618330394</dc:creator>
      <dc:date>2021-10-01T15:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293898#M66830</link>
      <description>&lt;P&gt;"D:/filedirectory/fileout_"+TalendDate.formatDate("yyyyMMdd_HHmm",TalendDate.getCurrentDate())+".csv"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems to work when writing a file, but not on tFileCopy??&lt;/P&gt;</description>
      <pubDate>Sat, 27 Nov 2021 09:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293898#M66830</guid>
      <dc:creator>1636848613</dc:creator>
      <dc:date>2021-11-27T09:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: File name with a timestamp</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293899#M66831</link>
      <description>&lt;P&gt;Diregard... needed spaces around + &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Sat, 27 Nov 2021 09:15:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-name-with-a-timestamp/m-p/2293899#M66831</guid>
      <dc:creator>1636848613</dc:creator>
      <dc:date>2021-11-27T09:15:29Z</dc:date>
    </item>
  </channel>
</rss>

