RemoveFilename
Remove the filename from a fullpath name.
Copies the path name of the full fimename into pszBuffer
void RemoveFilename( const char * pcszFilePath, char * pszBuffer );
Return value
none
Example
See also none
TCHAR szBuffer[ MAX_PATH ];
GetModuleFileName( NULL, szBuffer, MAX_PATH );
TCHAR szPath[ MAX_PATH ];
RemoveFilename( szBuffer, szPath );