728x90
반응형
fstream을 이용하여 간단하게 추가하기
bool file_util::append(string str)
{
findFile(getDirectory(s2w(_filepath)), true);
ofstream ofs;
ofs.open(_filepath, ios_base::app);
if (!ofs.is_open())
return false;
ofs << str.c_str() << endl;
ofs.close();
return true;
}
fstream을 cout과 같은 용법으로 사용할 수 있다는 사실을 처음 알게 됨. @_@
728x90
반응형
'Program Language > C & C++' 카테고리의 다른 글
[C++] template를 이용하여 Bind 사용하기 (2) | 2022.05.25 |
---|---|
[C++] unique_ptr 동적 할당 및 해제 하기 (0) | 2022.05.18 |
[C++] Queue Clear (0) | 2022.05.10 |
[C++] condition_variable에서 unique_lock (0) | 2022.05.10 |
[C++] 문자 제거 (0) | 2022.04.29 |