vote up 3 vote down star

From within a BPL, is it possible to get its own file name? e.g. C:\foo\bar.bpl

(dynamically loaded and delphi7, if it matters)

flag

2 Answers

vote up 7 vote down check

Call GetModuleFileName. For the module handle, use SysInit.HInstance. Passing zero will give you the host EXE's file name instead, also known as ParamStr(0).

link|flag
Thankyou, works as expected :) – Christopher Chase Oct 28 at 2:31
vote up 0 vote down

Example use of GetModuleFileName:

function  DLLFileName : string;
begin
  SetLength(Result,MAX_PATH);
  GetModuleFileName(HInstance,PCHar(Result),MAX_PATH);
  SetLength(Result,StrLen(PChar(Result)));
end;
link|flag
The last two lines can be folded into one, as GetModuleFileName() returns the number of characters copied, so the StrLen() isn't necessary. – mghie Oct 30 at 17:26
It's even easier: Result := PChar(Result); – dummzeuch Oct 30 at 22:13
@dummzeuch: Looks easier, yes. Calls the equivalent of StrLen() internally anyway. For those that crave the smallest and fastest code... – mghie Nov 2 at 5:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.