C#.Net 从 fileDialog 获取工作目录

发布于 2024-12-14 15:21:59 字数 401 浏览 0 评论 0原文

例如,我的应用程序中有一个文件对话框,它获取要执行的文件的路径。

C:\filespool\run.exe

现在我将其放入一个名为 exepath 的字符串变量中,并使用此代码执行它

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.WorkingDirectory = path;
proc.StartInfo.FileName = exepath;
proc.Start();

您可以看到我已经设置了工作目录,但我不知道如何以最佳方式获取它,所以我问知道这里的人。如何获取工作目录“C:\filespool”。

I have a filedialog in my application that gets the path of the file to execute, for example.

C:\filespool\run.exe

Now I put this in a string variable called exepath and execute it with this code

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.WorkingDirectory = path;
proc.StartInfo.FileName = exepath;
proc.Start();

You can see that I've set the workingdirectory but I dont know how to get it in the best way, so I ask people that know it here. How to get the workingdirectory "C:\filespool".

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

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

发布评论

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

评论(4

紫轩蝶泪 2024-12-21 15:21:59

您可以创建一个 FileInfo 对象并引用其 DirectoryName 属性。您必须包含 System.IO 命名空间。

FileInfo f = new FileInfo(exepath);
string path = f.DirectoryName;

这里是文档。

You can create a FileInfo object and reference its DirectoryName property. You'll have to include the System.IO namespace.

FileInfo f = new FileInfo(exepath);
string path = f.DirectoryName;

Here's the documentation.

绮烟 2024-12-21 15:21:59

我不确定您完全需要什么,但您可以使用 FileInfo.Directory 获取文件路径的目录。

I'm not sure what you need fully, but you can use FileInfo.Directory to get the directory of a file path.

生生漫 2024-12-21 15:21:59

这是一个答案。如果你还没有准备好,它可能会让你绊倒。打开(或保存)对话框后,Environment.CurrentDirectory 更改为对话框的目录。所以:

path = Environment.CurrentDirectory;
exepath = dlg.FileName;

Here is one answer. It is something that can trip you up if you are not ready for it. After an open (or save) dialog box, Environment.CurrentDirectory changes to the directory of the dialog. So:

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