vote up 2 vote down star

The Compact Framework doesn't support Assembly.GetEntryAssembly to determine the launching .exe. So is there another way to get the name of the executing .exe?

EDIT: I found the answer on Peter Foot's blog: http://peterfoot.net/default.aspx Here is the code:

byte[] buffer = new byte[MAX_PATH * 2];

int chars = GetModuleFileName(IntPtr.Zero, buffer, MAX_PATH);

if (chars > 0)

{

string assemblyPath = System.Text.Encoding.Unicode.GetString(buffer, 0, chars * 2);

}

[DllImport("coredll.dll", SetLastError = true)]

private static extern int GetModuleFileName(IntPtr hModule, byte[] lpFilename, int nSize);
flag

3 Answers

vote up 1 vote down check

I am not sure whether it works from managed code (or even the compact framework), but in Win32 you can call GetModuleFileName to find the running exe file.

MSDN: GetModuleFileName

link|flag
vote up 0 vote down

In managed code, i think you can use this:http://msdn.microsoft.com/en-us/library/system.windows.forms.application.executablepath.aspx

Application.ExecutablePath

link|flag
vote up 0 vote down

string exefile = Assembly.GetExecutingAssembly().GetName().CodeBase;

But if you put it in a DLL assembly, I belive it will give you the assembly file name. The same call on the "Full" framework will return the .exe file with a "file:\" prefix.

link|flag

Your Answer

Get an OpenID
or

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