This is a script I made to save each saved object in path1.
But I’m getting an error, please tell me why, please ㅠㅠ
Can you share what error you are getting?
thank you
Okay so the problem is most likely in Line 16 and 18. You are trying to Add “\” as a string but Python cannot handle the backslash in quotes.
A nicer way is to use the Path.Combine Function.
This way you avoid the “\”
Also. if you want to do this for more then 1 file you need to use a for-loop
See the example below for multiple files
3 Likes