Creating a variable path for all reader/writer nodes based on the user

Good day all,

I am relatively new to KNIME and therefore ask you for help in this.
I do want to change the path of every writer/reader node (in my case all excel) based on the user who is executing the workflow.

The path is mostly similar only the first part needs to be changed. (e.g. C:\Users\Thomas\OneDrive\General.…) only the bold part needs to be changed.
I found a way in another thread using variable expressions and joining every single path. However this would result in me having to define every single path upfront. In ideal case I would like define the path still trough browsing via the reader/writer node and having a component where I define the first part of the path as path variable.
Does anyone know if there is such a solution?

Thank you in advance
Thomas

Hi Thomas,
Welcome to the KNIME Forum! Generally, for such dynamic paths the Create File/Folder Variables node is really helpful, but as you mentioned, you can also use a variable expression. But if you let the user browse and then you want to adapt the path, how would the workflow find out which part of the path is dynamic? You could let the user select a path at the beginning of the workflow and then dynamically append to that. Is that what you need? In that case you can use the Create File/Folder Variables and control the base folder using a flow variable which gets its value from the folder selected by the user. Does that make sense?
Kind regards,
Alexander

3 Likes

@Krenbauer you can create path variables like this

1 Like

Hi,
thank you @mlauber71 and @AlexanderFillbrunn for your help.
Then I will create the paths needed in the Create File/Folder Varibales node.

Best
Thomas

1 Like

Hi @Krenbauer

If you are working with a company shared drive, like we also do, I can recommend using the Extract System Properties node and build your path dynamically accordingly in a component.

With this, we only have to fill in the path to a file once and the component takes care of the rest automatically.

In general, it works like this:

In the component dialoag, specify the file location.
image

In the component, extract the user.home with Extract System Properties.

image

Convert this to a flow variable and connect it to either a String Manipulation or Column Expression node

To get the filepath with the dynamic user.home you can use:
variable("user.home") + "\\" + regexReplace(variable("filepath_input"), ".+?(?=OneDrive)", "")

Output:

So even though you have filled C:\Users\Thomas, it now changed to my user. Convert this string to Path to use in the writers and ouput this new flow variable accordingly.

Connect it to the writer node and make the file location flow variable controlled.

3 Likes

Often the user.name also is used in defining the path of a OneDrive. In any case the “Extract System Properties” nodes is great.

@Krenbauer please be aware that cloud storage and KNIME might have some challenges, especially OneDrive. Test and make sure everything works:

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.