我有一个包含exe完整路径和exe名称的字符串,如下所示:

mainExePath = "c:\Folder1\Folder2\MyProgram.exe"


我想让Jus这样走:

"c:\Folder1\Folder2\"


我已经试过了:

string mainPath = System.IO.Path.GetFullPath(mainExePath);


但这返回了相同的字符串。

我怎样才能做到这一点?

最佳答案

使用Path.GetDirectoryName(mainExePath)

关于c# - 从可执行文件中提取完整路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24366351/

10-10 02:57