Is it possible to get a full path with double backslash by using Path.GetFullPath
? Something like this:
C:\\Users\\Mammamia\\Videos\\Documents\\CFD\\geo_msh\\cubeOp.txt
instead of this:
C:\Users\Mammamia\Videos\Documents\CFD\geo_msh\cubeOp.txt
Or is there any other method?
string.Replace
with@"\"
to@"\\"
? – Lynnlynna