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

learn more… | top users | synonyms

2
votes
2answers
234 views

How does if ('fstream object') return a value of true or false depending on if the file was opened?

I'm curious how the fstream class is able to return a true or false value by simply placing the name of the object inside a conditional statement. For example... std::fstream fileStream; ...
1
vote
2answers
421 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>' ...
1
vote
0answers
28 views

Things one should know/do to create a spectrogram [duplicate]

I am trying to create a spectogram hopefully from scratch using C++, that looks, more or less like this it will take in audio from a mic, and just display the data, no need to write/read to ...
0
votes
1answer
55 views

Using fstream write

I am trying to look for a line in a specified file and replace it with my line. I don’t have access to the library on the machines I’ll be running this on, so I created a custom file. The trouble ...
0
votes
1answer
95 views

C++ getline() slower than Java's readLine() [closed]

I'm trying to read a 250K line file, and apply regex to each of these lines. However the code is much much slower than Java's readline function. In Java all the parsing is done in ~10 sec, while in ...
0
votes
2answers
47 views

Read multiple values from file with fstream?

Can I read multiple values from tab separated text file with double value1, value2, value3; ifstream in; fin.open ("myfile.dat", ifstream::in); fin >> value1 >> value2 >> value3; ...
0
votes
2answers
48 views

How do I load object data from a save file?

I'm working on a project that deals with creating two strings, a username and a password. The two elements make an object of an Account. In the main, there is an Array of Accounts that is initialized ...
1
vote
4answers
111 views

Reading and writting binary files in C++

I am entirely new to C++ with just a couple of hours self-teaching, that started yesterday. SO: I have a uncompressed simple beep.wav file, just about 3 seconds long with a single beeping sound in ...
-1
votes
0answers
47 views

File handling in a source file

I am using GATE 6.1 (a simulation tool for tomographic emission). I want to change a source file (GateOpticaladder.cc which merges two or more pulses into a single pulse). I want to write information ...
0
votes
3answers
91 views

If-block not entered, not sure why

This function is supposed to read each line of a file and compare it to a user-input string and check if they match. It basically prevents duplicate information in the file. Anyway, the program ...
-2
votes
2answers
77 views

Writing a class object into a file using fstream and then read it

I want to make a class of a student and take 3 inputs information and make an output of this file. How to this? This is my try: #include <iostream> using namespace std; class Student{ ...
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 ...
-1
votes
0answers
57 views

Program freezes after storing data from file to structure

I have a problem. Program works very well when I am using function to add data to structure from CMD (CASE 1: part). But when I read file and store all data to structure function that display how many ...
2
votes
2answers
59 views

clear data inside text file in c++

I am programming on C++. In my code I create a text file, write data to the file and reading from the file using stream, after I finish the sequence I desire I wish to clear all the data inside the ...
1
vote
1answer
45 views

boost python can't access ios private item

I have the following code: //test.cpp #include <Physical_file.h> #include <boost\python.hpp> using namespace boost::python; using namespace FMS_Physical; ...
0
votes
4answers
700 views

Where to place file in order to read?

Hey, where do I place a text file that I'm trying to read using fstream? In this tutorial, http://www.gamedev.net/reference/articles/article1127.asp, they say ifstream fin("input.txt"); where would ...
0
votes
2answers
40 views

Reading integers from an unorganized text file

#include <iostream> #include <fstream> #include <string> #include <cctype> // isdigit(); using namespace std; int main() { ifstream fin; fin.open("Sayı.txt"); while ...
0
votes
1answer
41 views

Working with files - replacing one line

I'm trying to overwrite the lines of a file and take out the word "hello". For some reason this isn't working. This is the file: out.txt: hello 1 2 goodbye Here are the errors: error: ...
1
vote
2answers
90 views

How to read then edit file txt in C++

I know this question was asked here but I didn't find what I was looking for. The best answer I could find currently showed how to add something to a text file. How could I use fstream to either only ...
-4
votes
1answer
53 views

How do I open a .txt file in C++?

#include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line; ifstream myfile("hey.txt"); myfile >> line; cout << ...
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 ; ...
0
votes
2answers
56 views

C++11 - Move object containing filestream

I've got the following (simplified problem): class Stream() { std::ofstream mStr; public: Stream() : mStr("file", ofstream::out) {} Stream(const Stream & rhs) = delete; ...
-1
votes
0answers
5 views

Using concept of Stack and Read data from file find a highest CGPA in c++? [closed]

//Variable string Person[150]; string CGPA[150]; void loadeddata(); main { loadeddata(); system("pause"); return 0; } void loadeddata() { stack obj; stack obj1; try{ ifstream ...
0
votes
1answer
30 views

Using fstreams throws an access violation after main returns

The following function works fine, showing a text file line by line to stderr: void load_text(std::string path){ ifstream f(path); char linebuff[100]; linebuff[99] = 0; while(!f.eof()){ ...
0
votes
2answers
53 views

Taking a long time to close fstream

Why is my fstream taking 30+ seconds to close after writing data to the file? The more I write, the longer it takes to close. fstream *writeReadStream = new fstream("/media/username/KODAK/file.bin", ...
0
votes
1answer
38 views

Sequential file initialization unexpected behavior

I'm trying to initialize a file with 100 empty records with the code below: void initializeInventory() { std::ofstream out("hardware.dat", std::ios::binary); Hardware h; for (int i = 0; ...
0
votes
0answers
38 views

writing data to bin file?

I developed an application before. in there I read kinect skeleton data in a thread and store it in a queue and when the user press the save button I wrote the data into a Bin file. I have several ...
2
votes
2answers
52 views

Reading input from fstream

So it is a simple problem. Simply read input from a specific file. Use the input as a Celsius temperature and convert this temperature into Fahrenheit then print the results to the user. The problem ...
2
votes
4answers
87 views

Writing ASCII to file

I've been thinking about an easy way for a programmer to write down all ASCII characters. First I tried to print it in a console but it didn't show me all characters. So I tried to write it to a file ...
0
votes
1answer
36 views

ofstream trouble, how do i resolve this?

I am iterating over a map containing words as keys and to each word there are bunch of numbers assigned stored in vector<int> indicating on which line they were found. I am having trouble ...
1
vote
2answers
521 views

C++ ofstream - only 1 string gets written to file, previous string is overwritten, why?

i wrote a command line program that shall clean and reorganize our archived server logs by piping line by line to new target files. Each target file has an according regEx filter item so if the line ...
0
votes
3answers
84 views

Having problems with 0x0A character in C++ even in binary mode. (interprets it as new file)

Hi this might seem a bit noobie, but here we go. Im developing a program that downloads leaderboards of a certain game from the internet and transforms it into a proper format to work with it ...
-3
votes
0answers
37 views

Reading stuff from file and saving it into certain integers

I've got a code like this saveo.open("save.dat", std::fstream::out | std::fstream::trunc); saveo<<ept<<hp<<"\n"; saveo<<ept<<mana<<"\n"; ...
1
vote
1answer
17 views

C++ Program in Xcode not outputting simple text filer using outFile

I am running a program using this simple example code to output a text file. I am using Xcode and simply started a new C++ project from command line tools. For some reason the program does not output ...
0
votes
1answer
28 views

fstream directly access struct variable

I know how to read and write a complete struct with fstream. But just for curiosity, is there a way to access (read or write) a variable directly? I have never seen somebody doing this. aStruct * ...
0
votes
1answer
56 views

Qt - QFile - How to read only first word in every line

How can I read only first word in every line in a text file while using QFile in Qt? Thanks.
0
votes
1answer
101 views

trying to sort a txt file in c++ using a function and writing it back out to a txt file

void insertionSort (int arrtosort[], int size) { int temp = arrtosort[0]; for(int i = 1; i < size; i++) { temp = arrtosort[i]; int j = 0; for(j = i; j > 0; j--) if(temp ...
4
votes
1answer
66 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() { ...
0
votes
2answers
42 views

How do I use quotation marks in fstream?

I want to output a line into a .plt file that says "one-D Hydro" with the double quotation marks and so far I have this problem. #include <cstdlib> #include <fstream> using namespace ...
0
votes
3answers
59 views

How can the current file be overwritten?

For the following code: fstream file("file.txt", ios::in): //some code //"file" changes here file.close(); file.clear(); file.open("file.txt", ios::out | ios::trunc); how can the last three lines ...
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.
3
votes
2answers
81 views

Ofstream returning garbage. Cout works… Why doesn't ofstream?

So I'm trying to design a program that inputs a file and then reads through the lines and takes each line and outputs info about it to a new file. I have it all down... except! All my .txt files are ...
1
vote
3answers
136 views

Error reading char values from a .txt file into an array C++

I have to write a program that reads single char values from a .txt file into an array. When I run the code it displays a bunch of weird symbols. #include <iostream> #include <fstream> ...
-2
votes
1answer
64 views

C++ Ifstream Program - Error [closed]

I don't understand what I am doing wrong here. I also don't understand how I am supposed to use ifstream to read in the city and country strings when there has been no file created with that ...
0
votes
2answers
93 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
98 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, ...
-2
votes
2answers
89 views

opening c++ txt file and reading individual digits into int array

I am trying to read a text file into an array of integers but my read doesn't affect anything and my array stays at its default value of 0, my code is as follows #include <iostream> #include ...
0
votes
1answer
47 views

Expecting eof but instead arbitrary data near eof

I have sought to discover the cause of unwanted trailing end-data in a file I am writing specific data into and do not believe I have made errors in writing to the file. The output looks like: ...
0
votes
2answers
59 views

ifstream wont read all integer

When i read TestData.txt file it gives me wrong output. What am i doing wrong. I am using int array so i can do MergeSort after saving data into array. TestData.txt ------------------- 31791 ...
1
vote
1answer
44 views

Load and save an HTML file with polish characters

I need to load an HTML template file (using std::ifstream), add some content and then save it as a complete web page. It would be simple enough if not for polish characters - I've tried all ...

1 2 3 4 5 13