up vote 3 down vote favorite
share [g+] share [fb]

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)

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

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|improve this answer
Thankyou, works as expected :) – Christopher Chase Oct 28 '09 at 2:31
feedback

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|improve this answer
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 '09 at 17:26
It's even easier: Result := PChar(Result); – dummzeuch Oct 30 '09 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 '09 at 5:17
feedback

Your Answer

 
or
required, but never shown

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