Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Concatenate File's name of tFileOutputDelimited

Hello,

 

I want to concatenate the file's name of my tFileOutputDelimited component, with the command :

"D:/SPC/ResultFile/((String)globalMap.get("tFileList_1_CURRENT_FILE")).csv"

It's an evidence that it's wrong because I have 2 errors :

 

- Synthax error on token "tFileList_1_CURRENT_FILE", Invalid AssignmentOperator
- The left-hand sign of an assignment must be a variable

 

Can you help me, please ?

 

Best regards

BastienM

Labels (1)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Try this......

 

"D:/SPC/ResultFile/"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+".csv"

If you are using the tFileList component, you can get the full path with the filename so will not need to concatenate....unless this is actually a file in another folder (a mirrored folder or something similar).

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Try this......

 

"D:/SPC/ResultFile/"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+".csv"

If you are using the tFileList component, you can get the full path with the filename so will not need to concatenate....unless this is actually a file in another folder (a mirrored folder or something similar).

Anonymous
Not applicable
Author

Thank you.

 

Best regards

BastienM