14 Aralık 2017 Perşembe

filesystem ofstream Sınıfı

Constructor
path ile dosya sistemini kullanabilmemizi sağlar.

Örnek
Şöyle yaparız.
boost::filesystem::path filePath = ...;
boost::filesystem::ofstream s (filePath, std::ios::binary);
Örnek
Şöyle yaparız.
const fs::path filePath =...;
fs::ofstream s(filePath);
write metodu
Şöyle yaparız.
const char zeros[1024] = {0};

s.write(zeros, sizeof(zeros));

Hiç yorum yok:

Yorum Gönder