This should be easy enough, but I'm stuck on it for too much.
How do I concatenate two folder names?
For example:
ws = r'C:\Temp' folder = "Test" I want to get a result of c:\Temp\Test but everything I do results in c:\TempTest.
I can't use + "\" because it's invalid operation.
"\"(or evenr"\") didn't work is that the backslash is an escape character. Even in a raw string, the backslash is an escape character for the single use case of escaping the quote character. Therefore, you can't have a string that ends in a single backslash.