Tagged Questions
The fstream tag has no wiki summary.
29
votes
15answers
10k 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 ...
13
votes
5answers
28k 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?
...
11
votes
10answers
22k 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 ...
11
votes
4answers
5k 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 ...
10
votes
4answers
10k 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.
8
votes
2answers
53 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 ;
...
8
votes
2answers
264 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
4answers
1k 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 ...
7
votes
2answers
451 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 ...
5
votes
3answers
2k 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?
5
votes
3answers
378 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 ...
4
votes
2answers
120 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
3answers
763 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 ...
4
votes
4answers
468 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 ...
3
votes
1answer
84 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 | ...
3
votes
3answers
143 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?
3
votes
1answer
77 views
Fetching, modifying information on binary file?
I have a binary file whose size is "x+a+y" bytes. I have some questions;
Without exhaustive reading x bytes, How can I jump to start point of a bytes ?
Without taking all of the information reside ...
3
votes
3answers
65 views
Any way to identify a stream?
Is there any way in C++ to identify a file stream? It doesn't really matter what it is, as long as two streams created from the same file have the same "id"; anything that would allow me to say that ...
3
votes
2answers
254 views
Why failbit set when eof on read? Is there a way out?
I've read <fstream> predates <exception>. Ignoring the fact that excpetions on fstream aren't very informative, it follows my doubt:
It's possible to enable exceptions on file streams ...
3
votes
5answers
135 views
C++ Decorate basic_iostream classes
I want to do something like the following code shows:
class foo
{
private:
std::fstream* m_stream;
public:
foo(std::fstream* stream) : m_stream(stream) { }
foo& write(char const* s, ...
3
votes
3answers
591 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
1answer
814 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 ...
3
votes
3answers
530 views
How to read hex values from a file using fstream in c++?
As the title says, how do you read hex values using fstream?
i have this code: (let's say we have "FF" in the file.)
fstream infile;
infile.open(filename, fstream::in|fstream::out|fstream::app);
...
3
votes
1answer
209 views
fstream unix problem in reading
I am trying to read from binary file on UNIX. The file exists and has several data information in it.
The code looks like this:
fstrean fstrHandler;
string strFileName;
char Buf[30000];
...
3
votes
3answers
452 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 ...
3
votes
4answers
317 views
C++: reading from a file with null characters
I have to read data from a file for an assignment unfortunately instead of spaces separating the various fields there are null characters. When taking integers from the file they are extracted fine ...
3
votes
3answers
441 views
how can I read exactly 128 bytes from an fstream into a string object?
How do I read exactly 128 bytes from an fstream into a string object?
I wrote some code to read the first 128 bytes of a file and print it and then the last 128 bytes of the file and print that. The ...
3
votes
2answers
328 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 ...
3
votes
1answer
188 views
Beginner C++ - Opening a text file for reading if it exists, if it doesn't, create it empty
I am writing a high-score sub-routine for a text-based game. Here's what I have so far.
void Game::loadHiScores(string filename)
{
fstream hiscores(filename.c_str()); // what flags are needed?
...
3
votes
2answers
454 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()){
...
3
votes
7answers
825 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
1answer
436 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 ...
3
votes
3answers
872 views
Why can't c++ ifstreams read from devices?
I knew I should never have started using c++ io, the whole "type safety" argument is a red herring (does anyone really find that it's one of their most pressing problems?). Anyhow, I did, and ...
3
votes
4answers
273 views
Fstreams C++
Hello
I want the ofstream to write at the end of a file without erasing its content inside.
how can i do it? (i'm talking about txt files,and C++)
Thanks.
2
votes
4answers
96 views
How do i read an entire .txt file of varying length into an array using c++?
I'm making a shift cipher that reads in text from a file and decodes it. The decryption works fine howver i can't figure out how to find the length of the file without hardcoding it into the size of ...
2
votes
3answers
140 views
Portable end of line (newline) in C++
It's been an unpleasant surprise that '\n' is replaced with "\r\n" on Windows, I did not know that. (I am guessing it is also replaced on Mac...)
Is there an easy way to ensure that Linux, Mac and ...
2
votes
2answers
50 views
C++ deletes the spaces in text file after changes
Okay, I've encountered another problem with my simple program. My program gets the text file, reads it, then deletes the last symbol and outputs the new text file with the changes. It does everything ...
2
votes
2answers
122 views
Updating a file with <fstream> library (overwriting just a specific section)
I want to ask if there is any way to update say a text file with a content of "ooooo" to
"ooXXo" using the fstream library. I know there is a way with cstdio but I don't want to use that one because ...
2
votes
3answers
167 views
boost::Serialize VS std::fstream
Hey so i guess i'm a little confused on the purpose of boost::serialize:
Having to add a boost::serialize function to every class you plan to save seems to kind of defeat the purpose of the library, ...
2
votes
3answers
170 views
std::fstream with multiple buffers?
You can specify one buffer for your file stream like that:
char buf[BUFFER_SIZE];
std::ofstream file("file", std::ios_base::binary | std::ios_base::out);
if (file.is_open())
{
...
2
votes
1answer
211 views
QFile seek performance
It appears that QFile when working with a regular file (not a special Linux I/O device file) is random access, meaning that a seek operation has constant-time complexity O(1).
However, I haven't been ...
2
votes
2answers
312 views
Read Usernames and Passwords from a txt file
I need to pull usernames and passwords from a .txt file and I am having a difficult time wrapping my mind around how exactly to do this. I'll try to break this down.
Open the file
Read in the ...
2
votes
3answers
242 views
c++ how do you stop reading integer from text file when encounter negative integer?
Im trying to write a simple code in c++ to read in integer from a text file, the code should stop reading when it encounter a negative integer. The txt file contains 1 positive integer on each line, ...
2
votes
1answer
203 views
Why doesn't creating/writing to file with fstream work on windows start up?
So here I got this little program which everyone obviously understands.
include <iostream>
include <fstream>
using namespace std;
int main () {
ofstream myfile;
...
2
votes
4answers
325 views
Following use of getline, cannot write to file
I'm building a large file I/O library and am currently struggling with the interoperability of getline() and writing to a file. My question below is alot like this one, which unfortunately remains ...
2
votes
1answer
90 views
C++0x library that implements move for fstreams
After finding the answer to this question, I was now wondering if there is a current c++0x library that implements move (or even swap) for fstreams (as gcc (27.9) does not). I'd prefer if it was free ...
2
votes
4answers
141 views
Database vs fstream access
I have a (local) database (MySQL 5.1 at Ubuntu 10.10) with some 15000 tables each with ~1 000 000 rows on average. Each table has 6 DOUBLE columns. The storage engine is MyISAM. I have a C++ ...
2
votes
9answers
198 views
file i/o in c++
all i want to do is print the contents of readme.txt 20 times.. please help.
int main()
{
ifstream myfile;
string line;
int i;
myfile.open ("readme.txt");
if ...
2
votes
4answers
2k 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 ...
2
votes
2answers
692 views
c++ fstream concurrent access
What will happen if files are accessed concurrently from different processes/threads?
I understand there is no standard way of locking a file, only os specific functions.
In my case files will be ...