Путь к приложению (MFC)
Каким образом из приложения можно узнать полный путь к файлу, его запустившему?
Цитата:
Originally posted by Rig
Каким образом из приложения можно узнать полный путь к файлу, его запустившему?
Каким образом из приложения можно узнать полный путь к файлу, его запустившему?
Посмотри в MSDN
DWORD GetModuleFileName(
HMODULE hModule, // handle to module to find filename for
LPTSTR lpFilename, // pointer to buffer to receive module path
DWORD nSize // size of buffer, in characters
);
Parameters
hModule
Handle to the module whose executable filename is being requested. If this parameter is NULL, GetModuleFileName returns the path for the file used to create the calling process.
lpFilename
Pointer to a buffer that is filled in with the path and filename of the given module.
nSize
Specifies the length, in characters, of the lpFilename buffer. If the length of the path and filename exceeds this limit, the string is truncated.
Спасибо.