33

从 exe 文件创建的 Windows 进程可以访问调用它的命令字符串,包括其文件的路径和文件名。例如。C:\MyApp\MyApp.exe --help.

但对于通过LoadLibrary. 有谁知道通过 dll 加载函数的方法来找出它的路径和文件名是什么?

具体来说,我对 Delphi 解决方案感兴趣,但我怀疑任何语言的答案都几乎相同。

4

1 回答 1

39

我认为您正在寻找 GetModuleFileName。

http://www.swissdelphicenter.ch/torry/showcode.php?id=143

{
  If you are working on a DLL and are interested in the filename of the
  DLL rather than the filename of the application, then you can use this function:
}

function GetModuleName: string;
var
  szFileName: array[0..MAX_PATH] of Char;
begin
  FillChar(szFileName, SizeOf(szFileName), #0);
  GetModuleFileName(hInstance, szFileName, MAX_PATH);
  Result := szFileName;
end;

虽然未经测试,但自从我与 Delphi 合作以来已经有一段时间了 :)

于 2008-08-05T09:37:13.577 回答