/
thomas-king
/
Interpretator
Обзор
Документация
Войти
/
thomas-king
/
Interpretator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/lib/FileManager.cpp
16 строк
322 B
AceRodstin
Initial commit
28 ноя 2022, 12:18
28 ноя 2022, 12:18
796ddaf
Код
Авторство
О чём код?
// // Created by Ace Rodstin on 11/25/22. // #include "../../include/lib/FileManager.h" void FileManager::create_file(string path) { auto file = ofstream(path, ios::trunc); file.close(); } void FileManager::write(string str, string path) { auto file = ofstream(path, ios::app); file << str << "\n"; file.close(); }