0
votes
2answers
91 views

ifstream ignoring spaces and new lines - why?

So I am writing a simple program just trying to understand why it is ignoring spaces (it treats them as new lines) and why it does not account for new lines. Language: C++ Platform: Kubuntu 13.04 ...
0
votes
0answers
96 views

[Can't figure out][C++] Access violation error using ofstream/fstream?

I am writing to a file, using ofstream. The writes are very rapid for one thing, file is closed and opened extremely frequently. Below is the code: if( !(IS_ERROR(wcstombs_s( (size_t*)&out, ...
-1
votes
2answers
43 views

how to call a cout function to ofstream output file

I have a function void displayList() that displays a list of a set. in the main function I also have ofstream outputFile(output.txt) how do I call displayList and prints it in output.txt? Thanks. ...
1
vote
1answer
252 views

How to convert this binary (.dat) file [example inside] to readable text

I have a file 'quizzes.dat' which, when opened in notepad looks like this: "Bart Simpson K A F Ralph Wiggum # < , Lisa Simpson d b [ Martin Prince c b c Milhouse Van Houten P W O " all on one ...
1
vote
3answers
163 views

C++, Storing a String containing binary into a text file

I am currently attempting to store a string containing binary code. When I attempt to write this string to a text file it simply stores each 0 and 1 character in a string format, rather than storing ...
-3
votes
3answers
192 views

fstream with C program [closed]

May I know how to use fstream in C program to read and write to a file? Hope there's a tutorial for me to make it easy for me to understand. I heard most of them is using the fstream for C++, but less ...
0
votes
1answer
152 views

C++: Difference between casting ifstream to bool and using ifstream::is_open()

Maybe a dummy question, but I need a clear answer to it. Is there any difference at all in the return of any of those functions int FileExists(const std::string& filename) { ifstream ...
2
votes
1answer
328 views

Writing to a text file using 'ofstream' code error [duplicate]

In C++, I am currently learning about writing to a file (let's say a txt file) using ofstream and I decided to make my own little code and try it myself. I have a question about my code, because it is ...
0
votes
1answer
100 views

C++ ofstream Huge Text File

So, here's my code for a simple part of a class: void ArrayToTextFile::textfiller(string *givenpointer){ cout<< "Recieved array pointer address" << givenpointer << endl; ...
0
votes
1answer
111 views

break-to-a-newline when printing 5000 floating point numbers on one line in C++ on Linux

I am working on printing out a long stream of floating point numbers to a .csv file by C++ on Linux. I need to print 5000 numbers on one line without any break. Each number is separated by comma. ...
0
votes
0answers
24 views

File classes vs. Console classes

How is it possible for file classes like ifstream, ofstream, and fstream and console input and output classes like istream, ostream, iostream to have common interfaces and behaviors?
0
votes
1answer
123 views

writing Bytes into a .Bin file

I have a vector in C++ that I want to write it to a .bin file. this vector's type is byte, and the number of bytes could be huge, maybe millions. I am doing it like this: if (depthQueue.empty()) ...
-1
votes
2answers
535 views

C++ ofstream not writing to output file?

The code is supposed to count the number of a, b, c, d, e, and f characters in the input text file and print the output into a second text file. When I run the code, it creates the output file but ...
0
votes
3answers
307 views

C++: Does ios::out replace the file with a new one or destoys the content of the file?

Assume i have out.txt containing the text Hello World If i do this fstream ("out.txt" , ios::out) Then if i try to open the file it will be empty. My question is when i open a file stream to a ...
1
vote
2answers
83 views

C++: Does the Null get stored when storing a char array in a textfile?

Have a look at this code ofstream obj("output.txt"); obj<<"Hello World"; Here i send to the text file "output.txt" The char array "Hello World" Now char arrays are have a terminating null at ...
0
votes
3answers
106 views

C++: What type is the data in text files?

I can make a ofstream object to a textfile like this ofstream obj("file.txt") Then i can go ahead and send to it an int c=5 obj << c; When i send c to the text file, What type of data does ...
3
votes
3answers
298 views

Why 'ifstream' and 'ofstream' are added to “std”, while 'fstream' can serve both the purposes?

Using std::fstream one can declare objects of both the types ifstream and ofstream. The only difference is that, with fstream we need to provide in, out, app as a parameter which may not always ...
0
votes
2answers
340 views

open and write to existing fstream without overwrite/clearing in C++

I have an existing txt file, I want to be able to write stuff to it (on the next line) without modifying the existing contents. What's a good way to do this? #include <iostream> ofstream myfile ...
1
vote
0answers
454 views

C++ ofstream doesn't change mtime

Basically I want to do the same thing as the system call touch (create the file if it doesn't exist, update its modification timestamp if it does). std::string file = ...; std::ofstream(file.c_str(), ...
6
votes
2answers
524 views

Is it possible to pass cout or fout to a function?

I'm trying to find a way to pass fout or cout to a function. I realize there are logically easy ways to deal with this, like put ifs in any function that outputs data or even just write the function ...
1
vote
1answer
2k views

C++ File Editing with File Stream - Add Text - Remove Text - Modify Text [closed]

I am working on a project, and i would like to know if its possible to edit a file text, with C++ like i can do it on perl, awk, shell. ? The idea is to have like: id, name, birthday,. with point ...
1
vote
2answers
725 views

C++ - ofstream doesn't output to file until I close the program

I have the following code: ofstream mOutFile.open(logPath, ios_base::app); string lBuilder; lBuilder.append("========================================================\n"); ...
1
vote
1answer
80 views

I'm trying to set up a file stream or something like that, but I'm very confused as to what I'm supposed to do

#include <iostream> #include <fstream> int main() { std::ofstream outfile("text.txt", ios::trunc); std::ifstream infile("text.txt", ios::trunc); outfile.seekp(0); ...
1
vote
2answers
231 views

getting error in every line i have used <<

error C2784: 'std::basic_ostream<_Elem,_Traits> &std::operator <<(std::basic_ostream<_Elem,_Traits> &,const std::basic_string<_Elem,_Traits,_Alloc> &)' : >could not ...
1
vote
2answers
3k views

fstream ifstream I don't understand how to load a data file into my program

My professor is very smart but expects complete noobs like me to just know how to program c++. I don't understand how the fstream function works. I will have a data file with three columns of data. I ...
0
votes
2answers
192 views

ofstream error at runtime

Hi I'm trying to write text to files with: ofstream #include <iostream> #include <fstream> #include <sstream> #include <string> #include <cstring> #include ...
1
vote
2answers
148 views

Proper choice of file stream objects

Application uses RapidXML to edit XML file. Editing is not automated and takes place occasionally: XML content is displayed in GUI and user performs some actions which change XML. Each change must be ...
1
vote
5answers
1k views

Faster Alternative to std::ofstream

I generate a set of data files. As the files are supposed to be readable, they text files (opposed to binary files). To output information to my files, I used very comfortable std::ofstream object. ...
1
vote
2answers
248 views

C++ IO binary file streams: default value when output isn't specified

My question is about binary file I/O. Suppose the following code is run: #include <iostream> #inclide <fstream> int main(){ fstream out; ...
0
votes
3answers
1k views

Delete a line in an ofstream in C++

I want to erase lines within a file. I know you can store the content of the file (in a vector for example), erase the line and write again. However, it feels very cumbersome, and not very efficient ...
1
vote
2answers
420 views

Error C2248 in Fstream.h

This is the error message I'm getting: error C2248: 'std::basic_ios<_Elem,_Traits>::basic_ios' : cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>' ...
0
votes
1answer
273 views

Doesn't fstream support dynamic creation of files

I'm trying to create files dynamically and it seems like there is no way with fstream. Is there actually any? #include <iostream> #include <fstream> using namespace std; int main () { ...
11
votes
5answers
18k views

std::ofstream, check if file exists before writing

I am writing a save file functionality with Qt application written in C++. I am looking for a way to check to see if the selected file already exists before writing to it, so that I can prompt a ...
1
vote
4answers
349 views

C++ File I/O problem

I am trying to open a file which normally has content, for the purpose of testing i will like to initialize the program without the files being available/existing so then the program should create ...
0
votes
1answer
1k views

C++ iostream not setting eof bit even if gcount returns 0

I'm developping an application under windows, and i'm using fstreams to read and write to the file. I'm writing with fstream opened like this : fs.open(this->filename.c_str(), ...
1
vote
4answers
531 views

How do you search a document for a string in c++?

Here's my code so far: #include<iostream> #include<string> #include<fstream> using namespace std; int main() { int count = 0; string fileName; string keyWord; ...
3
votes
3answers
4k views

Returning ifstream in a function

Here's probably a very noobish question for you: How (if at all possible) can I return an ifstream from a function? Basically, I need to obtain the filename of a database from the user, and if the ...
3
votes
4answers
2k views

Partially truncating a stream (fstream or ofstream) in C++

I am trying to partially truncate (or shorten) an existing file, using fstream. I have tried writing an EOF character, but this seems to do nothing. Any help would be appreciated...