标签: c# escaping
从Directory.GetCurrentDirectory()返回的路径包含非转义的'\'字符。我怎么逃避他们?
答案 0 :(得分:3)
你可以做一个替换:
string escapedPath = unescapedPath.Replace(@"\", @"\\");