C# 调用程序并设置运行位置为D 盘根目录下的某个文件夹
时间: 2024-02-15 14:06:03 浏览: 100
C# 操作文件目录和系统环境
您可以使用 `Process` 类来启动一个程序,并通过 `ProcessStartInfo` 类的 `WorkingDirectory` 属性来设置程序的工作目录。具体代码如下:
```csharp
string path = @"D:\your_folder_path";
string exePath = @"D:\your_exe_path\your_program.exe";
ProcessStartInfo startInfo = new ProcessStartInfo(exePath);
startInfo.WorkingDirectory = path;
Process.Start(startInfo);
```
其中,将 `your_folder_path` 替换为您需要设置的文件夹路径,将 `your_exe_path` 替换为您需要启动的程序所在的文件夹路径,将 `your_program.exe` 替换为您需要启动的程序的名称。这样,启动的程序就会在 D 盘根目录下的指定文件夹中运行。
阅读全文