ExeName
Returns name and directory of the current Harbour program
Syntax
ExeName() --> <cProgram>
Returns
<cProgram> : Drive, path and file name of the current .EXE program
Description
This function determines the name and path of the Harbour application in use
Note
This function is equivalent of HB_ArgV()
Example
Determine if the name or path of an EXE file has changed: cOrigPath := "C:\DATA\ADDRESS.EXE" IF ExeName() <> cOrigPath ? "Program name or directory have been changed!" QUIT ENDIF
Seealso
HB_ArgV(), HB_DirBase()