Udostępnij za pośrednictwem


CFile::SeekToEnd

Ustawia wartość wskaźnika pliku logicznego końca pliku.

ULONGLONG SeekToEnd( );

Wartość zwracana

Długość pliku w bajtach.

Uwagi

SeekToEnd()jest równoważne z CFile::Seek( 0L, CFile::end ).

Przykład

CFile f;
f.Open(_T("Seeker_File.dat"), CFile::modeCreate |
   CFile::modeReadWrite);
f.SeekToBegin();
ULONGLONG ullEnd = f.SeekToEnd();

Wymagania

Nagłówek: afx.h

Zobacz też

Informacje

Klasa CFile

Wykres hierarchii

CFile::GetLength

CFile::Seek

CFile::SeekToBegin