如何在与其可执行文件相同的文件夹中启动进程

发布于 2024-09-04 01:27:06 字数 438 浏览 7 评论 0原文

我试图以编程方式启动一个应用程序,但它总是在我的应用程序的文件夹中运行它...例如:

如果我的应用程序位于 C:\MyApp\myapp.exe 中,另一个应用程序位于 C:\ OtherApp\otherapp.exe,如何在其他应用程序所在的文件夹中启动其他应用程序,而不是在我的应用程序所在的文件夹中启动?

这是我启动另一个应用程序的方法:

private void StartApp(OtherApp application)
{
    Process process = new Process();
    process.StartInfo.FileName = application.FileName;
    process.StartInfo.Arguments = application.AppName;
    process.Start();
}

I'm trying to start an application programatically, but it always runs it in the folder of my application... For example:

If my app is located in C:\MyApp\myapp.exe and the other app is in C:\OtherApp\otherapp.exe, how can I start the other app in the folder in which it resides, rather than in the folder where my app resides?

Here is how I start the other app:

private void StartApp(OtherApp application)
{
    Process process = new Process();
    process.StartInfo.FileName = application.FileName;
    process.StartInfo.Arguments = application.AppName;
    process.Start();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

比忠 2024-09-11 01:27:06

使用process.StartInfo.WorkingDirectory = pathToTheFolder;

Use process.StartInfo.WorkingDirectory = pathToTheFolder;.

灯下孤影 2024-09-11 01:27:06

只需设置 WorkDirectory 属性即可。

process.StartInfo.WorkingDirectory = Path.GetDirectoryName(application.Filename);

Just set the WorkDirectory property.

process.StartInfo.WorkingDirectory = Path.GetDirectoryName(application.Filename);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文