Tagged Questions
The ifstream tag has no wiki summary.
18
votes
5answers
3k views
Do I need to manually close a ifstream?
Do I need to manually call close() when I use a std::ifstream?
For example in the code:
std::string readContentsOfFile(std::string fileName) {
std::ifstream file(fileName.c_str());
if ...
11
votes
3answers
1k views
Getting std :: ifstream to handle LF, CR, and CRLF?
Specifically I'm interested in istream& getline ( istream& is, string& str );. Is there an option to the ifstream constructor to tell it to convert all newline encodings to '\n' under the ...
9
votes
8answers
620 views
How can I speed up line by line reading of an ASCII file? (C++)
Here's a bit of code that is a considerable bottleneck after doing some measuring:
//-----------------------------------------------------------------------------
// Construct dictionary hash set ...
7
votes
5answers
914 views
How to read formatted data in C++?
I have a formatted data like the following:
Words 5
AnotherWord 4
SomeWord 6
It's in a text file and I'm using ifstream to read it, but how do I separate the number and the word? ...
6
votes
3answers
216 views
Why can't I create a std::stack of std::ifstreams?
Why does the following not work:
#include <iostream>
#include <fstream>
#include <stack>
std::stack<std::ifstream> s;
-PT
5
votes
3answers
465 views
read entire binary file into an array in single call c++
I am trying to read a binary file into an array of structure
struct FeaturePoint
{
FeaturePoint (const int & _cluster_id,
const float _x,
const float _y,
...
4
votes
2answers
78 views
How to read unsigned int variables from file correctly, using ifstream?
My code reads unsigned int variables from the text file Input_File_Name.
unsigned int Column_Count; //Cols
unsigned int Row_Count;//Rows
try {
ifstream input_stream;
...
4
votes
1answer
108 views
C++ converting file stream function to use a stringstream
I have loads of c++ classes that reads data from a file stream. The functions looks like this.
bool LoadFromFile(class ifstream &file);
I'm creating a new function to read from memory instead ...
4
votes
1answer
137 views
reading a line from ifstream into a string variable
In the following code :
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string x = "This is C++.";
ofstream of("d:/tester.txt");
of ...
4
votes
2answers
142 views
C++ ifstream::read() and C arrays
It seems to be a general consensus that C arrays are bad and that using the smarter alternatives, like vectors or C++ strings is the way to go. No problem here.
Having said that, why does the read() ...
4
votes
3answers
228 views
c++ ifstream to char *
my code reads a file with ifstream and parse it, now I changed some things and I don't need to read the file, 'cause is read from another place, so I have a char* instead to ifstream... how can I ...
4
votes
6answers
89 views
what exactly is a token, in relation to parsing
I have to use a parser and writer in c++, i am trying to implement the functions, however i do not understand what a token is. one of my function/operations is to check to see if there are more ...
4
votes
2answers
596 views
Files in folders not found in iOS app using C++
I'm trying to read files stored in assets folder and its subfolders using std::ifstream in an iOS app written mostly in C++ (The same code is also used in other, non-iOS projects), but they're not ...
4
votes
2answers
677 views
c++ ifstream function and field separators
For this program i have only used field separators from data files in shell script. But I am trying to use the standard library function ifstream() to read in from a data file. The only problem is I ...
4
votes
2answers
420 views
C++ version of isspace (Convert code to C to C++)
I am converting code from C to C++. I am currently using the C function, isspace, what is the C++ equivalent when using an ifstream? Specifically while (!isspace(lineBuffer[l]))
id is the first the ...
4
votes
3answers
285 views
Best way to parse a large floating point file stored in ascii?
What would be the fastest way to do it? I remember someone telling me using ifstream was bad because it worked on a small number of bytes, and it would be better to just read the file into memory ...
3
votes
1answer
65 views
c++ Reading in integers from a .txt file to a stack
This is so stupid. I've been stuck literally for an hour trying to read in a .txt file of numbers that are separated by a single whitespace. The while loops only gets executed once for some reason!
...
3
votes
2answers
574 views
Using ifstream as fscanf
Assume that I have an input as follows:
N (X_1,Y_1) (X_2,Y_2) .... (X_N, Y_N)
where N, X_i and Y_i are integers.
An example:
2 (55,1) (521,7)
To read this, I can do something like this(assume ...
3
votes
3answers
826 views
Find the end of stream for cin & ifstream?
I'm running myself through a C++ text book that I have as a refresher to C++ programming. One of the practice problems (without going into too much detail) wants me to define a function that can be ...
3
votes
3answers
442 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
4answers
1k views
cant get ifstream to work in XCode
No matter what I try, I cant get the following code to work correctly.
ifstream inFile;
inFile.open("sampleplanet");
cout << (inFile.good()); //prints a 1
int levelLW = 0;
int numLevels = 0;
...
3
votes
2answers
12k views
ifstream, end of line and move to next line?
how do i detect and move to the next line using std::ifstream?
void readData(ifstream& in)
{
string sz;
getline(in, sz);
cout << sz <<endl;
int v;
for(int i=0; ...
2
votes
3answers
58 views
Mismatch between characters put and read
I'm trying to write a Huffman encoder but I'm getting some compression errors. I identified the problem as mismatches between characters that were put() to the ofstream and the characters read() from ...
2
votes
3answers
68 views
Read from a file and swap certain char in C++
In this function I need to replace all chars in a file that is inputted, e.g. an a, with another char inputted, e.g. an i. I have given it two shots but as I am new and it's way too late for my brain ...
2
votes
1answer
92 views
Weird line ending conversion (CR, LF, CRLF) with istreambuf_iterator<char>(ifstream(…, ios::binary))
I'm writing a CRC32 routine in MSVC++2010 and need to read a file in binary mode, byte by byte.
I'm doing it with ifstream and istreambuf_iterator, and it generally works, but it does some weird ...
2
votes
2answers
69 views
Very specific parsing in C++
Basically, I'm trying to read in the words from a file and, without punctuation, read each word into a multimap which is then inserted into a vector with each pair being a word and the line of the ...
2
votes
3answers
68 views
C++ read() from ifstream: without pointers?
Suppose I have a struct and a file with binary representations of those structs and I'll make a function/method that access this binary data using ifstream::read().
Here's an example struct:
struct ...
2
votes
2answers
76 views
C++ read() problems
I'm having trouble reading a large file into my own buffer in C++ in Visual Studio 2010. Below is a snippet of my code where length is the size of the file I'm reading in, bytesRead is set to 0 before ...
2
votes
2answers
102 views
ifstream can't locate file?
I'm trying to read a file called "sample.txt" but whenever i try to do an ifstream, it can never locate the file. So my question is where do you put the file so that it can be located?
ifstream ...
2
votes
3answers
181 views
Is ios::in needed for ifstream's opened in binary mode?
What's the difference between these two? Isn't the in flag object thing redundant? Thanks.
std::ifstream file1("one.bin", std::ifstream::in | std::ifstream::binary);
std::ifstream file2("two.bin", ...
2
votes
2answers
66 views
why am I getting an error when I pass an ifstream&?
I'm trying to code a simple program that uses an ifstream and scanner to read a text file. For some reason I'm getting this error: "In passing argument 1 of 'bool ReadVector(std::ifstream&, ...
2
votes
4answers
197 views
Getting the nth line of a text file in C++
I need to read the nth line of a text file (e.g. textfile.findline(0) would find the first line of the text file loaded with ifstream textfile). Is this possible?
I don't need to put the contents of ...
2
votes
2answers
184 views
How to ignore newline characters when reading file in list format
I am trying to read a file with a list of titles and authors, and I need to be able to ignore the newline character that separates each line in the file.
For example, my .txt file might have a list ...
2
votes
3answers
208 views
Checking if a file opened successfully with ifstream
g++ (GCC) 4.6.0
I have the following that will open a file for reading. However, I want to check to make sure that the file was open successfully, so I am using the fail to see if the flags have ...
2
votes
2answers
138 views
Why basic_ifstream show me wrong results?
I have a binary file. There are 2288*2288 longitude float values stored in top half section, and the same number of latitude float values occupied the bottom half. I used the following code to load ...
2
votes
4answers
403 views
How to move the file pointer to next character through “ifstream” without “getting” any character, just like “fseek” does?
seekg uses ios as the second argument, and ios can be set to end or beg or some other values as shown here: http://www.cplusplus.com/reference/iostream/ios/
I just want the pointer to move to the ...
2
votes
2answers
71 views
How to read uptill a particular character in a file, without going through the file, character by character?
Want to detect the '\n' without going through each and every character of a text file. Any hints?
2
votes
2answers
112 views
Reading a “;” delimited file into a character array structure
I am trying to read a set of values from a text file into an array of structures of arrays. The entries are each separated by a '\n', and each entry consists of 3 values, separated by a ';'.
The ...
2
votes
2answers
241 views
Using Ifstream to add numbers from text file to a C Style Array
I am having trouble with the title above. I have tried the following but it does not act in the correct behaviour.
void ArrayIntStorage::read(ifstream& in)
{
if(in.is_open())
{
...
2
votes
5answers
420 views
Having trouble serializing binary data using ifstream and ofstream
I am trying to serialize a Plain Old Datastructure using ifstream and ofstream and I wasn't able to get it to work. I then tried to reduce my problem to an ultra basic serialization of just a char and ...
2
votes
5answers
195 views
Reading a fixed number of chars with << on an istream
I was trying out a few file reading strategies in C++ and I came across this.
ifstream ifsw1("c:\\trys\\str3.txt");
char ifsw1w[3];
do {
ifsw1 >> ifsw1w;
if (ifsw1.eof())
break;
...
2
votes
2answers
596 views
Open file relative to executed module
I know, it isn't the best idea to open a file constraining it to be placed in the same directory like the executed module. But, there is a tool, I was ordered to program, with exact these ...
2
votes
3answers
354 views
Inheriting from ifstream
Can I inherit from ifstream and read the file from my derived class like this:
#include <iostream>
using namespace std;
const string usage_str = "Usage: extract <file>";
class File: ...
2
votes
2answers
259 views
Failing to read file loaded with ifstream
void bot_manager_item::create_games()
{
games.clear();
std::ifstream paths_in("C:\\Users\\bill hank\\Documents\\bot_plugins\\directory_listing.txt", std::ios::in);
while (paths_in.good())
...
2
votes
2answers
193 views
When do I stop reading from a file?
Does some_file.good() return false after reading the last entry from the file, or after attempting to read beyond that? That is, should I write
while (input.good())
{
getline(input, line);
// ...
2
votes
2answers
205 views
Ifstream infinite loop (it never seems to find the marker to stop reading)
A rather quick question... I can't figure out why this loop never ends...
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
//[city1][city2][distance]
...
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
3answers
944 views
C++ std::ifstream in constructor problem
I've got a problem with this code:
#include <fstream>
struct A
{
A(std::ifstream input)
{
//some actions
}
};
int main()
{
std::ifstream input("somefile.xxx");
...
2
votes
1answer
230 views
ifstream::unget() fails. Is MS' implementation buggy or is my code erroneous?
Yesterday I discovered an odd bug in rather simple code that basically gets text from an ifstream and tokenizes it. The code that actually fails does a number of get()/peek() calls looking for the ...
2
votes
5answers
2k views
How to count lines of a file in C++?
In C++, how can I count lines using the standard classes fstream, ifstream?
Thank you,
Mohammad