How can i create a folder in a folder which are saved in a variable?

Hi all,

i want to know how it’s possible to create a folder in a folder.

Both foldernames are saved in a variable.
This is whati tried:
"C:\Users\FGi\Desktop\Ordnerstructur" + filtername + "" + filtername2

It reads the names from an Excel cell, which are saved in a variable. It’s necassary to not replace the first variable…

Thank you very much!

"C:\Users\florian.gashi\Desktop\Ordnerstruktur" + filtername + " \ " + filtername2 *

hi @Florian16

you have to concat “\” after each and every Variable to create a folder.
something like below.

C:\Users\florian.gashi\Desktop\Ordnerstruktur\” + filtername + " \ " + filtername2 + " \ " + filtername3+ " \ " + filtername4

i guess your using Create directory activity :slight_smile:

Ajay