fstream datoteka;
datoteka.open("Informacije.txt", fstream::in | fstream::out | fstream::app);
if(!datoteka.is_open()){
ifstream datoteka("Informacije.txt")
datoteka.open("my_file.txt", fstream::in | fstream::out | fstream::app);
}
So what he should do is create a file if it has not been created before, and if it was created, write to this file.
Hello, so what I want from my program is to check if the file already exists, sothe program open, if it exists, and I can write in it if the file is not open (have not been created before ), the program will create it. Therefore, the problem is when I create the CSV file and finish recording, and I wanted to check if it was really written, the file could not be opened. Everything is empty in the .txt file.
source
share