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 に答える