Why its not creating temp folder

Hi When am using this below mentioned path then why its downloading temp file instead folder?
PathExists
Environment.CurrentDirectory + "" + “Temp” + ""

below is the screen shot of my xaml.

and why we use ReadCVS?

Any reason why you want to be doing "\"+Temp+"\" ?

You don’t need the last backslash.

What is the path specified in the Create Folder activity?

Also, you might want to use Path.Combine(Environment.CurrentDirectory, "Temp") for cleaner code instead of appending the paths with a + operator.

1 Like