SyntaxFix
Write A Post
Hire A Developer
Questions
Use the os.path module.
os.path
os.path.join( "C:", "meshes", "as" )
Or use raw strings
r"C:\meshes\as"
I would also recommend no spaces in the path or file names. And you could use double backslashes in your strings.
"C:\\meshes\\as.jpg"