Value in variable not recognized

Hi all!

I’m getting values from excel sheet like this:
“C:\Users\user\Desktop\Company\Folder\File.zip”

Then I send the values as parameters to an activity but it says Illegal characters in path.
I don’t know why, when I let the value in the field (without the variable) it works but when value is in the variable it doesn’t work.

Any help is appreciated.

Regards,
juramirez.

hello @Juramirez,
I think you passing the Path Value with double quotes.
try this and check,
variableName.toString.replace("""","")

1 Like

Hi! Thanks for your answer but I already tried it and doesn’t work.

Regards,
Juramirez

hi @Juramirez,
print the variable value using write line before pass as a argument and check the value is correct or not.

Thanks