Insert string path issue

I am using Neo4j client in my .Net app and this is the code executing in the background :

MERGE (p:Project {projectId : 'yy' })
SET p.projectName='yy',
p.validCount=0,
p.instanceCount=0,
p.allProjectFilePath ='C:\Users\AppData\Local\Temp\tmp6454.tmp'

But my problem is when i retrieve this data i find a space after "Temp" word and the '' char after this word removed :

"allProjectFilePath": "C:\Users\AppData\Local\Temp mp6454.tmp"

It sees ‘\t’ as an Unicode tab character

Looks like you can used double ‘\’ instead of ‘\‘ to escape the backslash

1 Like

Thank u so much Gary

1 Like