Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello every one,
I have an input files with different rows like that:
/Default/First/Second/Third/
/Default/First/Second/Third/
Output (Directories):
Default
First
Second
I need to have as an output some directories related to each word contained in the different path. So I know I have to extract each word and generate some dynamic directories. I don't know which component to extract each word from row and which other component to create directories.
I'm new on Talend and I have a basic on Java. thank you for your help
Stev
Question
Find a sample job . Please change the path in last Component.
Also You can replace 1st component by input file component ( Read full line in one single column)
assumption ,
1)All the directories needs to be created in same base/home folder.
2) The file contains only Directory Names
you could reuse above logic to extract words from line and create directory.
Question
Find a sample job . Please change the path in last Component.
Also You can replace 1st component by input file component ( Read full line in one single column)
assumption ,
1)All the directories needs to be created in same base/home folder.
2) The file contains only Directory Names
you could reuse above logic to extract words from line and create directory.
Hi M. Kumar,
Excuse me to come back to you, I was wondering if you could help me again. How can i get as an ouput, a delimited file csv with lines:
/Default/
/Default/First
/Default/Fisrt/Second
from Input: /Default/First/Second/
I tried with tfileOutputDelimited but it didn't work.
Thank you in advance.