在Directory.GetCurrentDirectory()中添加转义序列
本文关键字:添加 转义序列 Directory GetCurrentDirectory | 更新日期: 2023-09-27 18:18:25
从Directory.GetCurrentDirectory()返回的路径包含未转义的'''字符。如何转义
你可以做一个替换:
string escapedPath = unescapedPath.Replace(@"'", @"''");
本文关键字:添加 转义序列 Directory GetCurrentDirectory | 更新日期: 2023-09-27 18:18:25
从Directory.GetCurrentDirectory()返回的路径包含未转义的'''字符。如何转义
你可以做一个替换:
string escapedPath = unescapedPath.Replace(@"'", @"''");