指定 .NET 应用程序中子进程的工作目录
从 .NET 控制台应用程序执行外部应用程序时,为子进程设置正确的工作目录对于无缝操作至关重要。 如果子应用程序依赖于位于特定目录中的资源,这一点尤其重要。
.NET 方法
.NET 中的 ProcessStartInfo
类提供了一个简单的解决方案。 它的 WorkingDirectory
属性允许您定义子进程的起始目录。
<code class="language-csharp">using System.Diagnostics; // Instantiate a ProcessStartInfo object var startInfo = new ProcessStartInfo(); // Define the desired working directory startInfo.WorkingDirectory = @"C:\My Working Directory"; // Start the process with the specified working directory Process proc = Process.Start(startInfo);</code>
通过使用此方法,您可以保证从 .NET 应用程序启动的子进程开始在指定目录中执行,从而确保访问所需的文件和正确的功能。
以上是如何在.NET中设置子进程的工作目录?的详细内容。更多信息请关注PHP中文网其他相关文章!