Como puedo saber el path donde estoy

Hola estoy programando en C++ y necesito saber en que path me encunetro en el momento de ejecucion del .exe, como lo puedo saber?

1 respuesta

Respuesta
1
Yo uso C++Builder6, existe esta funcion: GetCurrentDir() que retorna el directorio actual, o sea, donde esta el ejecutable, puedes ver algo sobre WinApi, no estoy seguro de que funcion puedes utilizar, mira este segmento de ayuda:
The GetCurrentDirectory function retrieves the current directory for the current process.
DWORD GetCurrentDirectory(
DWORD nBufferLength, // size, in characters, of directory buffer
LPTSTR lpBuffer // address of buffer for current directory
);
Parameters
nBufferLength
Specifies the length, in characters, of the buffer for the current directory string. The buffer length must include room for a terminating null character.
lpBuffer
Points to the buffer for the current directory string. This null-terminated string specifies the absolute path to the current directory.
Return Values
If the function succeeds, the return value specifies the number of characters written to the buffer, not including the terminating null character.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
If the buffer pointed to by lpBuffer is not large enough, the return value specifies the required size of the buffer, including the number of bytes necessary for a terminating null character.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas