Displaying 1 result from an estimated 1 matches for "afxdump".
Did you mean:
advdump
2000 Mar 29
0
Something about Upper/Lower-case
...ibute byte of the file.
char m_szFullName[_MAX_PATH] The absolute filename in the Windows
character set.
lpszFileName
Example
//example for CFile::GetStatus
CFileStatus status;
extern CFile cfile;
if( cfile.GetStatus( status ) ) // virtual member function
{
#ifdef _DEBUG
afxDump << "File size = " << status.m_size << "\n";
#endif
}
char* pFileName = "test.dat";
if( CFile::GetStatus( pFileName, status ) ) // static function
{
#ifdef _DEBUG
afxDump << "Full file name = " << stat...