News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

filename extracting

Started by Claudy, December 26, 2007, 02:10:36 PM

Previous topic - Next topic

Claudy

hi,

How can I get the filename of an exe file, from within that executable, while it is running, with the condition that the filename must be extracted BEFORE any window is created?

In other words: I run 'MyApp.exe', in that app before creating any window, I wish to get the filename "MyApp" in a string, extracted from 'MyApp.exe'.
Is this possible?

Claude Put     Belgium

TimoVJL

Use GetModuleFileName()
You get programname with path


int nIdx, nLen;
char szExe[260], szTitle[80];

GetModuleFileName(0, szExe, sizeof(szExe));
strcpy(szTitle, strrchr(szExe, '\\')+1);
nLen = strlen(szTitle);
if (nLen > 4) szTitle[nLen-4] = 0;

May the source be with you

Claudy

Thank you timovjl, just what I needed...

Put Claude   Belgium