如何在此C#行中解析双引号?

问题描述

我需要在此行上为路径字符串加双引号:

cmd.StartInfo.Arguments = @"/C attrib -h -s -i "+ Path +" ";

我尝试过

cmd.StartInfo.Arguments = @"/C attrib -h -s -i "\""+ Path +""\" ";

cmd.StartInfo.Arguments = @"/C attrib -h -s -i "\"""+ Path +""\"" ";

但是没有用,我该怎么办?

解决方法

删除@符号可停止将反斜杠视为文字字符而不是转义字符。然后\“可以用作双引号。

cmd.StartInfo.Arguments = "/C attrib -h -s -i \"" + Path + "\"";
,

您不需要@符号。您只需要对双引号使用转义符号。只要做:

String Path = "The path string";
String s = "/C attrib -h -s -i \"" + Path + "\"";

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...