1

我在使用 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 并且不知道为什么有人可以帮助我吗?

编辑:当我在 cmd 中运行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"

它不工作,但不知道如何添加"程序?

4

1 回答 1

0

我在我的问题上找到了答案,所以如果您需要为字符串变量添加双引号,请使用以下内容:

startInfo.Arguments = string.Format("/L=\"{0}\"", GetArgument());

于 2013-10-25T10:33:20.727 回答