Tagged Questions
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 ...
-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 << ...
-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
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 ...
-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";
...
0
votes
0answers
65 views
File Input failure C++
I've been trying to grasp how reading and writing with the fstream class works, and I've become stuck. The program reads the magic number of the file correctly, and then suddenly fails to read an ...
1
vote
2answers
125 views
C++ , reading & writing to the same file after processing
I am looking for a clean c++ solution to read and write to the same file after processing the string read from ifstream. For example this is what I have in mind
std::ofstream ofs("test.txt", ...
0
votes
3answers
96 views
Not able to read whole file
I'm making a C++ to be able to open a .bmp image and then being able to put it in a 2D array. Right now i have the code like this:
#include <iostream>
#include <fstream>
#include ...
-4
votes
4answers
100 views
Find the most used words in both text files
I have two txt files both using the same words multiple times. I have managed to pull them both into arrays and formatted one of the non-formated txt files via a insertion sort.
Now I need to compare ...
1
vote
3answers
86 views
Creating a big size array of type char and copying file characters
I have to copy characters of a file in a big size array, so I created this code:
std::vector<std::vector<char> > strings;
strings.resize(rows);
for (int i = 0; i < rows; i++)
{
...
0
votes
1answer
123 views
Error: Expected constructor, destructor, or type conversion before '.' token - Understand fstream
I have a simple problem. I'm just learning how to use fstream to print to and from a data file, and I am just having issues compiling. I am getting the same error on lines 11 and 20 of this code. ...
-1
votes
1answer
109 views
C++, How to open a file without having to type the whole file path
I have a simple question!
I am opening a file that is located in a simple folder in my VS12 project.
In order to open the file, you have to type in the whole file path so for example you would have ...
0
votes
1answer
39 views
ifstream on different dir
First, yes, i have searched through sof and google, and all i could find was about using double slashes, but that didin't do the trick, so i'm asking, what i'm doing wrong.
I have a test file called ...
0
votes
0answers
102 views
Why is seekp not doing its job? C++/CLI
My function "WriteToFile" is writing a piece of data to a file at the end of a line indicated by the int variable zone. The file is set up at the beginning with certain text to help indicate where to ...
0
votes
1answer
162 views
Trouble with writing and reading using fstream (windows forms, C++/CLI)
I'm creating a small program to take in (possibly) multiplexed serial data from a serial port but having trouble with this function involving reading and writing to my output file.
Everything compiles ...
0
votes
4answers
166 views
How to read the whole lines from a file (with spaces)?
I am using STL. I need to read lines from a text file. How to read lines till the first \n but not till the first ' ' (space)?
For example, my text file contains:
Hello world
Hey there
If I write ...
1
vote
2answers
97 views
When opening a file, C or C++?
Currently I'm using C++ for a program I'm writing and I have an, a query regarding Old v New.
Looking online I see people using the C++ syntax to open files. I'm moving to C++ so I should keep up ...
0
votes
2answers
169 views
C++ input data into a struct variables from data file
I have a text file containing names and numbers. The name or the string contains 15 chars and I need to put it to the string. I'm working with structures.
struct grybautojas{
string vardas;
...
-4
votes
1answer
40 views
Input/Output files [closed]
I'm designing a code for a program which does some input/outputs to a file.There are some functions in the program like viewing some information stored in the output file and saving changes to ...
-1
votes
2answers
234 views
run .exe file in background using cmd [closed]
I m running a simple CPP program to read characters from the console and store in a file in such a way they are separated by dots...
#include<stdio.h>
#include<conio.h>
...
2
votes
4answers
132 views
Writing using << on an fstream
I'm trying to write a long to a text file using c++ fstream class. The file is already created on disk before the execution. I run the following code and can read the initial value but can't save the ...
0
votes
0answers
118 views
reading files in c++
I'm doing a homework assignment where we are to read a bunch of values from a file, implement 3 sort functions and find the runtime/order/efficiency of the specific algorithm. Not everything is ...
1
vote
2answers
75 views
saved file not showing up in directory c++
I have a simple I/O program but when I save a file it is not being created in the project directory or anywhere else on my computer. It all compiles fine, all the functions work but upon Loading I ...
1
vote
2answers
105 views
rdbuf() reading junk
Using this code I'm read a string from file.
pbuf = infile.rdbuf();
size = pbuf->pubseekoff(0, ios::end, ios::in);
pbuf->pubseekpos (0,ios::in);
buf = new char[size];
pbuf->sgetn(buf, size);
...
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');
...
3
votes
1answer
768 views
overwriting some text in a file using fstream and delete the rest of the file
I am trying to write a program that read a file using fstream
then, rewrite some of the text and delete the rest of the file
This the code that I am trying to do
#include<iostream>
...
0
votes
1answer
334 views
reading and appending a file using fstream in C++
I am trying to read a file using fstream. Then when I reach the end I append the file and write some staff
file
abc
I wrote sample code
#include<iostream>
#include<fstream>
...
7
votes
1answer
554 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, ...
0
votes
1answer
254 views
Get file size with std::ios::ate?
Several topics (see Using C++ filestreams (fstream), how can you determine the size of a file? and C++: Getting incorrect file size) on how to measure a file size compute the difference between the ...
0
votes
0answers
116 views
C++ can fstream's open potential files [closed]
Okay so I want to use fstream's (specifically fstream::rdbuf) to copy files to a new location. I have made a couple of tiny programs to move a one-line text file to a different folder however when ...
1
vote
2answers
290 views
How to input a file into C++ and comparing console input
Im working on my homework assignment and I stuck because in the assignment we have to ask the user to enter a file name but also to type in either wc cc or lc (word count, character count, and line ...
3
votes
1answer
967 views
ifstream tellg() not returning the correct position
The code is as follow :
The Code:
#include <iostream>
#include <fstream>
using namespace std;
int main(void)
{
int id;
char name[50];
ifstream myfile("savingaccount.txt"); ...
0
votes
1answer
76 views
Read 3 integers from file c++
I want to read mulitple variables from a file and store them in a object, but its not working.
File example:
De vedettn
Wout Wouters
14 7 2005
Code that i wrote:
string naam, leider;
int dag, ...
0
votes
1answer
365 views
File created when using ofstream, but not ifstream and fstream/cannot seem to access gcount()
all. A new project of mine involves reading names from a file, and I realized, especially for somebody who likes to (attempt to, more like) makes games, reading/writing to store information is very ...
1
vote
1answer
990 views
“Updating” a line in a file by overwriting it
I'm trying to write a function that when called, will search my text file for a match to the parameter, then "update" it by overwriting the file.
here is my current function:
EDIT: Here is the new ...
0
votes
1answer
227 views
Ifstream crashes program when opening file
I've narrowed my code down, and I found the source of the problem, it's when I open a file.
The file does exists, and I don't get any warning or errors when compiling.
int main(int argc, const char* ...
1
vote
3answers
1k views
Extracting lines from .txt file, then store words into separate arrays | C++
Our professor gave us this assignment, where we have a .txt file with the following format:
John 23
Mary 56
Kyle 99
Gary 100
...etc. etc.
What we have to do is read the file, and store the names ...
1
vote
3answers
276 views
C++. After writing into a relative file, I cannot display the content
I can write into a relative file, then when I try to read the content and display it on the screen (to check if data are actually into the file), I do not have the records which I believe are already ...
-1
votes
3answers
442 views
Reading huge txt files from C++?
I'm trying to read a huge txt through c++. It has 70mb. My objective is to substring line by line and generate another smaller txt containing only the information that I need.
I got to the code below ...
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 ...
3
votes
2answers
208 views
How delete content of file after the last EOL?
I have some internal file which can only be appended to and after each appending \n character is added to the file. But theoretically it is possible that appending to the file is failed and it becomes ...
0
votes
1answer
139 views
I need to extract only one field of each record from a file, but it does not work
I have a text file that contains name, age and gpa of each record. I wrote a function getgpa that should calculate the average gpa of the file (the whole class). The problem is that I can easily ...
2
votes
1answer
483 views
How to collect and store tellp(), tellg() return types?
I am writing a program that maintains a linked_list in a file. So I traverse across the file, by using tellp()/tellg() and adding it to a particular long integer(can be seen as an offset) to get to ...
0
votes
1answer
68 views
Is there any bug inducing feature when reading and writing using the same fstream object in c++
I am trying to learn C++ fstream, ifstream, ofstream. On Half way through my project I learnt that if we are accessing the same file with ofstream and ifstream for read & write, its better to ...
1
vote
2answers
214 views
Can we store an object in a file for later retrieval?
I am trying to write a code, where I need to store the intermediate results in a file for later retrieval. For example, I need to store all the values in an 3D Array in a file, with the dimensions and ...
3
votes
2answers
1k views
Parse files the fast way?
I am writing on a graph library that should read the most common graph formats. One format contains information like this:
e 4 3
e 2 2
e 6 2
e 3 2
e 1 2
....
and I want to parse these lines. I ...
1
vote
2answers
145 views
std::fstream seems to read in different sizes
I'm working on ubuntu 10.04 and a gcc. I have a binary file with my own magic number. When I read the file, the magic number is not the same. The streams seams to be correct.
Writing magic number :
...
0
votes
5answers
998 views
Splitting files in C++
I need to split a file into multiple files without compression. I found this on cpp reference
#include <fstream>
using namespace std;
int main () {
char * buffer;
long size;
ifstream infile ...
1
vote
5answers
198 views
Save data in C++ to a file which can't be accessed by the user?
I'm trying to create a rudimentary log-in, create account system in C++, in which basically the user is prompted for a username and password or create a new account. In the option to create a new ...


