使用total-commander打开Windows系统文件夹时遇到了一些问题 当我在cmd中手动运行命令没关系,但是当它作为ProcessStartInfo运行时没有。 这个问题发生在Windows XP上,Windows 7参数(路径)有点不同但工作正常。
ProcessStartInfo startInfo = new ProcessStartInfo(); //New Proccess
startInfo.Arguments = "/L=" + GetArgument(); //Return C:\WINDOWS\system32\config\systemprofile\Local Settings\Application ata\MyApp\update\download [it´s OK]
startInfo.WorkingDirectory = Path.GetDirectoryName(GetTcmdPath());
startInfo.FileName = GetTcmdPath(); //returns C:\Program Files\totalcmd\TOTALCMD.EXE [it´s OK]
Process.Start(startInfo); //Start proccess
TC已启动但路径为:C:\ WINDOWS \ system32 \ config \ systemprofile并且不知道为什么 请有人帮帮我吗?
修改:当我在没有C:\Program Files\totalcmd>TOTALCMD.EXE /L=C:\WINDOWS\system32\config\systemprofile\Local Settings\Application Data\MyApp\update\download
"
中运行时
而不是
C:\Program Files\totalcmd>TOTALCMD.EXE /L="C:\WINDOWS\system32\config\systemprofile\Local Settings\Application Data\MyApp\update\download"
它不起作用但不知道如何在程序中添加"
?
答案 0 :(得分:0)
我在我的问题上找到了答案,所以如果你需要在字符串变量中添加双引号,请使用以下内容:
startInfo.Arguments = string.Format("/L=\"{0}\"", GetArgument());