dir = "C:\Users\Geraldes\Desktop\media\teste\ASMS_TapeA01A1691329.mxf"
print dir
using the code above, i get this... i know that \t is tab
C:\Users\Geraldes\Desktop\media (espacamento) este\ASMS_TapeA01A1691329.mxf
but, to fix this i do:
dir1 = dir.replace("\\", "\\\\")
print "dir:",dir1
and i get
C:\\Users\\Geraldes\\Desktop\\media (espacamento) este\\ASMS_TapeA01A1691329.mxf
how can i fix this problem?