0
votes
4answers
75 views
Reading files and deleting repeated letters
Hello! So my goal is to make a function that has a partially filled array of characters as a formal parameter and deletes all repeated letters from the array. So I just need to rea …
0
votes
3answers
166 views
Unable to open fstream when specifying an absolute path
Hey everyone!
I know this is rather laughable, but I can't seem to get simple C++ ofstream code to work. Can you please tell me what could possibly be wrong with the following co …
0
votes
5answers
120 views
ifstream position in c++
Hi,
I am trying to write a simple UTF-8 decoder for my assignment. I'm fairly new with C++ so bear with me here...
I have to determine whether the encoding is valid or not, and o …
2
votes
2answers
142 views
working with fstream files in overflow chaining in c++
Hello,
I have a file that I want to read and write to a binary file using records. In the beginning I have an empty file and I want to add new record, but when I use the seekp fu …
1
vote
6answers
242 views
C++ Storing objects in a file
I have a list of objects that I would like to store in a file as small as possible for later retrieval. I have been carefully reading this tutorial, and am beginning (I think) to u …
2
votes
4answers
194 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.
0
votes
3answers
75 views
Where does Visual Studio search for txt files when conducting file management operations?
I know this is a noob question, but I've worked with Python before and when you wanted to simply access a .txt file for example, all you had to do was make sure the txt file was in …
0
votes
3answers
151 views
writing binary data
Hello,
I am writing to binary file using fstream and when open the file using binary flag.
I needed to write some text as binary, which a simple write did the trick.
The problem …
3
votes
4answers
681 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.
0
votes
2answers
223 views
Problem with file stream/fstream in Xcode C++
Here is a simple program to output to a text file:
#include <iostream>
#include <fstream>
using namespace std;
int main() {
double myNumber = 42.5;
fstream outfile(" …
1
vote
6answers
217 views
How do you output variable’s declared as a double to a text file in C++
I am very new to C++ and I am wondering how you output/write variables declared as double to a txt file. I know about how to output strings using fstream but I cant figure out how …
2
votes
1answer
166 views
Writing to default-constructed fstream: Undefined Behavior?
Consider the following:
std::basic_fstream<char> testfile;
testfile.write(reinterpret_cast<const char*>(&someInt), sizeof(int));
testfile.close();
This runs with …
1
vote
3answers
595 views
Load binary file using fstream
I'm trying to load binary file using fstream in the following way:
#include <iostream>
#include <fstream>
#include <iterator>
#include <vector>
using namespace std;
…
0
votes
2answers
159 views
Keep a stream from fstream open through member functions
Hi,
I am trying to keep a stream to a file /dev/fb0 (linux framebuffer) open throughout several Qt member functions. The goal is to use a myscreen::connect function to open u …
0
votes
7answers
319 views
Redirecting C++ fstream
So I have a C++ program, that normally when it executes writes out things to a log file. This is done using an fstream. However, now I want to include functionality to turn the l …
