I need double quotes on this line for Path string:
cmd.StartInfo.Arguments = @"/C attrib -h -s -i "+ Path +" ";
I tried
cmd.StartInfo.Arguments = @"/C attrib -h -s -i "\""+ Path +""\" ";
and
cmd.StartInfo.Arguments = @"/C attrib -h -s -i "\"""+ Path +""\"" ";
but It didn't work, how can I do?