<?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 Delete file in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287099#M60721</link>
    <description>Hello;&lt;BR /&gt;I have to delete a file.txt . How can pass the file name from an interface to my job done with T.O.S.&lt;BR /&gt;i.e i have to choice a file name from a list in interface to be deleted later by running T.O.S 's job.&lt;BR /&gt;Can you please help me&lt;BR /&gt;Thank you.</description>
    <pubDate>Sat, 16 Nov 2024 14:03:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T14:03:14Z</dc:date>
    <item>
      <title>Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287099#M60721</link>
      <description>Hello;&lt;BR /&gt;I have to delete a file.txt . How can pass the file name from an interface to my job done with T.O.S.&lt;BR /&gt;i.e i have to choice a file name from a list in interface to be deleted later by running T.O.S 's job.&lt;BR /&gt;Can you please help me&lt;BR /&gt;Thank you.</description>
      <pubDate>Sat, 16 Nov 2024 14:03:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287099#M60721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287100#M60722</link>
      <description>hi romyos&lt;BR /&gt;int the context view , choose value as trees and check option button prompt !&lt;BR /&gt;You'll have a dialog box where you can initialize your context value &lt;BR /&gt;hope it'll help you&lt;BR /&gt;++</description>
      <pubDate>Tue, 03 Mar 2009 10:59:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287100#M60722</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-03T10:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287101#M60723</link>
      <description>hello;&lt;BR /&gt;thank you for your anser;&lt;BR /&gt;In realite I transported my project to NetBeans.Here I have an interface from i can choose a file name; but i don't know how to pass this file name to talend's job .&lt;BR /&gt;Can you lease help me because i'am young with Talend.&lt;BR /&gt;Thank you</description>
      <pubDate>Tue, 03 Mar 2009 13:26:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287101#M60723</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-03T13:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287102#M60724</link>
      <description>Hello Romyos 
&lt;BR /&gt;1) Define a context variable: filePath in your job, when you delete the file, you should use the context variable as file path in your job. 
&lt;BR /&gt;2) Pass the file path to main method in eclipse, eg: 
&lt;BR /&gt; 
&lt;PRE&gt;package excel;&lt;BR /&gt;public class Talend {&lt;BR /&gt;    public static void main(String[] args) {&lt;BR /&gt;        Talend t = new Talend();&lt;BR /&gt;        t.test();&lt;BR /&gt;    }&lt;BR /&gt;    public void test() {&lt;BR /&gt;        String[] args = { "--context_param filePath=d:/text.txt" };&lt;BR /&gt;        test2.test3_0_1.test3.main(args);&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt; 
&lt;BR /&gt; 
&lt;B&gt;About '--context_param filePath=d:/text.txt'&lt;/B&gt;, in fact we set the value of context dynamically, see 1615. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 04 Mar 2009 06:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287102#M60724</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-04T06:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287103#M60725</link>
      <description>Hello;&lt;BR /&gt;thank you for your help. Un fortunately it dosn't work.&lt;BR /&gt;It was an exception in component tFiledelete("java.lang.NullPointerException")&lt;BR /&gt;I upload   slots witch describes my job.&lt;BR /&gt;Please can you resolve my problem&lt;BR /&gt;Thank you</description>
      <pubDate>Wed, 04 Mar 2009 09:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287103#M60725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-04T09:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287104#M60726</link>
      <description>Hello Romyos 
&lt;BR /&gt;I see that you define a context variable: nom, its data type is File and then set the value of context variable: 
&lt;BR /&gt;--context_param file=c:/test.txt 
&lt;BR /&gt;the correct way is that: the data type should be string and the value of context variable is: 
&lt;BR /&gt;--context_param nom=c:/test.txt //nom is the variable name. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 04 Mar 2009 09:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287104#M60726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-04T09:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287105#M60727</link>
      <description>Hello;
&lt;BR /&gt;it dosn't work Shong.
&lt;BR /&gt;I don't know where's the problem.
&lt;BR /&gt;Can you please see my new slots please. 
&lt;BR /&gt;Thank you very much.</description>
      <pubDate>Wed, 04 Mar 2009 10:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287105#M60727</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-04T10:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287106#M60728</link>
      <description>Hello 
&lt;BR /&gt;Please see my screenshots.
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 04 Mar 2009 14:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287106#M60728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-04T14:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287107#M60729</link>
      <description>hello Shong
&lt;BR /&gt;Thank you for your help.
&lt;BR /&gt;Problem resolved</description>
      <pubDate>Mon, 09 Mar 2009 11:29:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287107#M60729</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-09T11:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Delete file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287108#M60730</link>
      <description>Hi. I runned into that damn problem too. And after days of searching I finally found this software: Delete Long Path File Tool.&lt;BR /&gt;It's GREAT. You can find it here: &lt;A href="http://www.deletelongfile.com" target="_blank" rel="nofollow noopener noreferrer"&gt;www.deletelongfile.com&lt;/A&gt;</description>
      <pubDate>Tue, 16 Nov 2010 18:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Delete-file/m-p/2287108#M60730</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2010-11-16T18:28:14Z</dc:date>
    </item>
  </channel>
</rss>

