如何在子目录中执行文件

时间:2014-09-05 03:14:19

标签: c# .net

所以我有一个小的安装文件,需要安装一些运行时文件。这些文件位于驱动器根目录的子目录中。每个客户机器上的驱动器号都不同,所以我尝试了这个以及其他几种方法都无济于事。

            // File is being ran from D:\ "eg: D:\setup.exe"
            // All my runtimes are in the Tools\Runtime direcorties
            string path = Directory.GetCurrentDirectory();
            string ext = "/q /norestart";
            string location = "\\Tools\\Runtimes\\Net\\";
            string step1 = "dotnetfx35.exe";
            var process = Process.Start(path + location + step1 + ext);
            process.WaitForExit();

正如专业人士和更有经验的程序员所知,出于某种原因...它不起作用 我一直找不到文件。

0 个答案:

没有答案