fstream provides an iostream interface for file I/O in C++.

learn more… | top users | synonyms

47
votes
15answers
18k views

mmap() vs. reading blocks

I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and ...
37
votes
6answers
43k views

How to check if a file exists and is readable in C++?

I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that? I use Linux.
35
votes
6answers
55k views

Reading from text file until EOF repeats last line

The following C++ code uses a ifstream object to read integers from a text file (which has one number per line) until it hits EOF. Why does it read the integer on the last line twice? How to fix this? ...
20
votes
5answers
6k views

How to construct a c++ fstream from a POSIX file descriptor?

I'm basically looking for a C++ version of fdopen(). I did a bit of research on this and it is one of those things that seems like it should be easy, but turns out to be very complicated. Am I ...
16
votes
12answers
39k views

using fstream to read every character including spaces and newline

I wanted to use fstream to read a txt file. I am using inFile >> characterToConvert, but the problem is that this omits any spaces and newline. I am writing an encryption program so i need to ...
16
votes
4answers
9k views

Getting a FILE* from a std::fstream

Is there a (cross-platform) way to get a C FILE* handle from a C++ std::fstream ? The reason I ask is because my C++ library accepts fstreams and in one particular function I'd like to use a C ...
13
votes
5answers
13k views

How to count lines of a file in C++?

How can I count lines using the standard classes, fstream and ifstream?
12
votes
3answers
13k views

Using C++ filestreams (fstream), how can you determine the size of a file?

I'm sure I've just missed this in the manual, but how do you determine the size of a file (in bytes) using C++'s istream class from the fstream header?
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 ...
11
votes
2answers
440 views

are “seekp” & “seekg” interchangeable?

Well I just noticed that by changing the position -in microsoft visual studio- through "seekp" I implicitelly also change the read-position, when handling files. I am wondering however if this is ...
9
votes
3answers
2k views

Why is failbit when eof on read? Is there a way out?

I've read that <fstream> predates <exception>. Ignoring the fact that exceptions on fstream aren't very informative, I have the following question: It's possible to enable exceptions on ...
8
votes
2answers
1k views

How does file streaming actually work?

I've been wondering for a while now, how exactly does file streaming work? With file streaming, I mean accessing parts of a file without loading the whole file into memory. I (believe to) know that ...
8
votes
2answers
150 views

Accessing individual characters in a file inefficient? (C++)

I've always assumed it to be more efficient, when processing text files, to first read the contents (or part of it) into an std::string or char array, as — from my limited understanding — files are ...
8
votes
3answers
286 views

Using ofstream on AIX

I am trying to write a simple C++ program on an AIX Box. The program is given below: # include <iostream> # include <fstream> using namespace std ; int main() { ofstream of ; ...
7
votes
2answers
1k views

Processing files larger than 2 GB in C++ with STL

I am doing binary file processing and in my algorithm I would like to know the actual type of pos_type and off_type, for example when computing the size of the file or seeking to a given position ...
7
votes
3answers
2k views

C++ ifstream::read slow due to memcpy

Recently I decided to optimize some file reading I was doing, because as everyone says, reading a large chunk of data to a buffer and then working with it is faster than using lots of small reads. And ...
7
votes
1answer
553 views

std::fstream buffering vs manual buffering (why 10x gain with manual buffering)?

I have tested two writing configurations : 1) Fstream buffering : // Initialization const unsigned int length = 8192; char buffer[length]; std::ofstream stream; stream.rdbuf()->pubsetbuf(buffer, ...
6
votes
5answers
16k views

How do I read a text file from the second line using fstream?

how can i make my fstream object start reading a txt file from the second line? Thanks.
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 ...
6
votes
3answers
7k views

In C++ is there a way to go to a specific line in a text file?

If I open a text file using fstream is there a simple way to jump to a specific line, such as line 8?
6
votes
3answers
238 views

What's wrong with this code?

The author presented this code under the title A bus error on my platform #include <fstream> #include <iostream> int main() { std::ofstream log("oops.log"); ...
6
votes
1answer
576 views

Seeking in large files with ifstream

I'm implementing a program in C++ using ifstream that must seek in large files (~1TB). However, this fails after reading 2GB. Is there a way to get file positions, even for large files? I compile for ...
5
votes
3answers
4k views

How to get the line number from a file in C++?

What would be the best way to get the line number of the current line in a file that I have opened with a ifstream? So I am reading in the data and I need to store the line number that it is on so ...
5
votes
4answers
6k views

Copy data from fstream to stringstream with no buffer?

Is there anyway I can transfer data from an fstream (a file) to a stringstream (a stream in the memory)? Currently, I'm using a buffer, but this requires double the memory, because you need to copy ...
5
votes
1answer
4k views

How to use std::ifstream to read in a binary file with a wide string path

I am reading a binary file as: const size_t stBuffer = 256; char buffer[stBuffer]; std::wstring wPath(L"blah"); std::wifstream ifs(wPath.c_str(), std::wifstream::in | std::wifstream::binary) while ...
5
votes
3answers
265 views

Low level disk operations in Linux for C++

What kind of methods exists in linux for low level disk operations in C++? I am attempting to write my own manager of data on a disk. For example, I would like to create a C++ program in the Linux ...
5
votes
3answers
276 views

c++ fstream - creating own formating flags

i need to create new flags for the format of the output file. i have a class class foo{ bar* members; ofstream& operator<<(ofstream&); ifstream& ...
5
votes
3answers
452 views

Writing binary files using C++: does the default locale matter?

I have code that manipulates binary files using fstream with the binary flag set and using the unformatted I/O functions read and write. This works correctly on all systems I've ever used (the bits in ...
5
votes
1answer
579 views

std::fstream files more than 2gb

what strategy should i use if i have an implimentation of std::fstream with 32-bit std::streampos? If i want to move position i can do it in several steps(10gb - 10 times +1gb). How can i get ...
4
votes
3answers
276 views

How can I read numbers from a file in C++?

My main question is about how you read data from a file that is not of the char data type. I am writing a file of data from MATLAB as follows: x=rand(1,60000); fID=fopen('Data.txt','w'); ...
4
votes
2answers
2k views

std::fstream doesn't create file

I am trying to use std::fstream for io to file, and I want to create the file if it doesn't already exist. std::fstream my_stream my_stream.open("my_file_name",std::fstream::binary | ...
4
votes
3answers
1k views

How to return an fstream (C++0x)

I think I'll get right into it and start with the code: #include <iostream> #include <fstream> #include <string> class test : public std::ofstream { public: test(const ...
4
votes
2answers
4k views

C++ Newbie: Passing an fstream to a function to read data

I have a text file named num.txt who's only contents is the line 123. Then I have the following: void alt_reader(ifstream &file, char* line){ file.read(line, 3); cout << "First ...
4
votes
2answers
1k views

C++: Everytime I read in by fstream I got 1 extra character at the end

Everytime I read in by fstream I got 1 extra character at the end, How can I avoid this? EDIT: ifstream readfile(inputFile); ofstream writefile(outputFile); char c; while(!readfile.eof()){ ...
4
votes
4answers
757 views

in C++ files: what a file opened as an ios::binary differs from one opened as ios::binary | ios::out?

if i opened a file like: ofstream file("file.dat",ios::binary); or ofstream file("file.dat",ios::binary | ios::out); what can i do with a file opened in the latter form that i can't do with the ...
4
votes
1answer
126 views

Avoiding an “inheritance by dominance” warning for a mocked std::fstream class

I am using googlemock to mock out an std::fstream object in my unit tests, like this: TEST_F(SomeTest, SomethingIsDoneCorrectly) { class MockFstream : public std::fstream {}; MockFstream ...
4
votes
1answer
132 views

Using .getline with string instead of char

So I have some code here that reads from a text document and stores it into char bunz. I know this sounds like a stupid question but I'd rather use string instead of char. Will .getline accept a ...
4
votes
1answer
180 views

Why does calling istream::tellg() affect the behavior of my program?

I am trying to convert a 24 bit bitmap image into grayscale. #include<iostream> #include<fstream> #include<conio.h> #include<stdio.h> using namespace std; class pixel{ ...
4
votes
1answer
64 views

Updating the end of the file in c++ fstream

I wrote this code: #include <fstream> #include <iostream> using namespace std; struct Man { int ID; char Name[20]; }; void Add(); void Update(); void Print(); int main() { ...
4
votes
2answers
133 views

How to read a json file into a C++ string

My code like this: std::istringstream file("res/date.json"); std::ostringstream tmp; tmp<<file.rdbuf(); std::string s = tmp.str(); std::cout<<s<<std::endl; The output is ...
4
votes
2answers
1k views

How can I use non-default delimiters when reading a text file with std::fstream?

In my C++ code, I want to read from a text file (*.txt) and tokenize every entry. More specifically, I want to be able to read individual words from a file, such as "format", "stack", "Jason", ...
4
votes
2answers
590 views

What permissions does a file written with fstream have?

Suppose I create a file for writing like this: std::ofstream my_file("filename", std::ios_base::out | std::ios_base::trunc); How are the permissions of this file determined? I've had a program ...
4
votes
3answers
4k views

Relative path for fstream

do I always have to specify absolute path for std::fstream obj or is there a way to specify just relative path to it, like for example, project path?
4
votes
2answers
157 views

Stuck Between Legacy C++ IO library and Standardized IO Library

My question is after a frustration, actually I recently studied the standard C++ IO library. I developed on a Linux machine, so everything was fine. Since I used exception handling for file io ...
4
votes
6answers
662 views

C++ pyramid of numbers

I need to write a program where it takes 2 integers from a file. Then it has to make a pyramid from those 2 numbers. It has to look like this: I've wrote the code and it works as I want to, bet I ...
3
votes
3answers
3k views

eof problem c++

i am using Dev C++ on windows xp #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string STRING; ifstream infile; ...
3
votes
7answers
1k views

fstream skipping characters without reading in bitmap

I am trying to read a bmp file using fstream. However it skips the values between 08 and 0E (hex) for example, for values 42 4d 8a 16 0b 00 00 00 00 00 36 it reads 42 4d 8a 16 00 00 00 00 00 36 ...
3
votes
3answers
182 views

Why don't C++03 file streams accept string constructor parameters?

Why does the following code compile in C++11 and does not in C++03? (both gcc and cl) #include <string> #include <iostream> #include <fstream> int main(int argc, char* argv[]) { ...
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
744 views

loading fstreams into a std::vector in c++

This is a simple and complex question at the same time. This compiles: int Test; vector<int> TEST; TEST.push_back(Test); cout << TEST.size(); This does not compile: fstream Test; ...

1 2 3 4 5 13