Udostępnij za pośrednictwem


CArchive::WriteString

Funkcja ta Członkowskie zapisu danych z buforu do pliku skojarzone z CArchive obiektu.

void WriteString(
   LPCTSTR lpsz 
);

Parametry

  • lpsz
    Określa wskaźnik do bufora zawierającego ciąg zakończony znakiem null.

Uwagi

Kończącego znaku null (\0) nie jest zapisywany w pliku; nie jest nowego wiersza automatycznie zapisywane.

WriteStringzgłasza wyjątek w odpowiedzi na kilka warunków, w tym warunek pełnego dysku.

Zapis jest również dostępna, ale kończącego znaku null, zapisuje żądana liczba bajtów w pliku.

Przykład

CFile myFile(_T("My__test__file.dat"), 
   CFile::modeCreate | CFile::modeReadWrite);
CString str1("String1"), str2("String2"), str;

// Create a storing archive.
CArchive arStore(&myFile, CArchive::store);

// Write str1 and str2 to the archive
arStore.WriteString(str1);
arStore.WriteString(_T("\n"));
arStore.WriteString(str2);
arStore.WriteString(_T("\n"));

// Close the storing archive
arStore.Close();

// Create a loading archive.
myFile.SeekToBegin();
CArchive arLoad(&myFile, CArchive::load);

// Verify the two strings are in the archive.
arLoad.ReadString(str);
ASSERT(str == str1);
arLoad.ReadString(str);
ASSERT(str == str2);

Wymagania

Nagłówek: afx.h

Zobacz też

Informacje

Klasa CArchive

Wykres hierarchii