File name has two backslashes C#

后端 未结 5 1433
甜味超标
甜味超标 2021-01-21 23:06

There is probably an easy answer for this, but when I added DateTime.Now.ToString() to my fileName it adds an extra \\ for every \\ I have so C:\\Temp

5条回答
  •  隐瞒了意图╮
    2021-01-21 23:41

    Nope, that string really has single backslashes in. Print it out to the console and you'll see that.

    If you look at it in the debugger, you'll see the backslashes escaped - but the string itself has single backslashes. This bites lots of people :(

提交回复
热议问题