Tagged Questions
7
votes
5answers
2k views
How to easily indent output to ofstream?
Is there an easy way to indent the output going to an ofstream object? I have a C++ character array that is null terminate and includes newlines. I'd like to output this to the stream but indent ...
6
votes
8answers
2k views
How to portably write std::wstring to file?
I have a wstring declared as such:
// random wstring
std::wstring str = L"abcàdëefŸg€hhhhhhhµa";
The literal would be UTF-8 encoded, because my source file is.
[EDIT: According to Mark Ransom this ...
5
votes
6answers
3k views
How does one write the hex values of a char in ASCII to a text file?
Here is what I currently have so far:
void WriteHexToFile( std::ofstream &stream, void *ptr, int buflen, char *prefix )
{
unsigned char *buf = (unsigned char*)ptr;
for( int i = 0; i < ...
5
votes
7answers
2k views
Assigning cout to a variable name
In ANSI C++, how can I assign the cout stream to a variable name? What I want to do is, if the user has specified an output file name, I send output there, otherwise, send it to the screen. So ...
4
votes
4answers
51 views
Writing polymorphic class data to a file?
So I have these classes. There's one base class, but it has/will have lots and lots of derivatives, and those derivative classes will be able to have derivatives as well. I'd like to be able to have ...
4
votes
5answers
205 views
Very surprising perfs of fprintf vs std::ofstream (fprintf is very slow)
I was running some benchmarks to find the most efficient way to write a huge array to a file in C++ (more than 1Go in ASCII).
So I compared std::ofstream with fprintf (see the switch I used below)
...
4
votes
4answers
1k views
c++ std::ofstream flush() but not close()
I'm on MacOSX.
In the logger part of my application, I'm dumping data to a file.
suppose I have a globally declared std::ofstream outFile("log");
and in my logging code I have:
outFile << ...
4
votes
13answers
3k views
Write a circular file in c++
I need to write a circular file in c++. The program has to write lines in a file and when the code reaches a maximum number of lines, it must overwrite the lines in the beginning of the file.
Anyone ...
3
votes
4answers
103 views
Basic Input/Output C++ Error
All I want is a c++ program that will read in a txt file, put each row in an array, then print a duplicate copy into another txt file. Here's my code...
#include <iostream>
#include ...
3
votes
2answers
218 views
Is std::ofstream movable?
I have this map which compiles fine in MSVC10 :
std::map<std::string, std::ofstream> m_logFiles;
But on ubuntu using g++ 4.5 with C++0x enabled, I get the following error message :
...
3
votes
1answer
117 views
dupplicating std::ofstream appended content
I am using a std::ofstream for trace output.
For some reasons, I sometimes want to dupplicate what I have appended at the end of the std::ofstream (that is not flushed or closed yet), into another ...
3
votes
2answers
4k views
Writing stringstream contents into ofstream
I'm currently using a std::ofstream a function and a std::stringstream
std::ofstream outFile;
outFile.open(output_file);
Then I call a function
GetHolesResults(..., std::ofstream &outFile){
...
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
1answer
145 views
C++ fstream outputs wrong data
Context first:
My program do some parallel calculation which are logged in a file. Threads are grouped by blocks (I'm using CUDA). The log file is formated this way:
#begin run
...
2
votes
4answers
131 views
Why is my output file empty in this simple program using std::fstream?
I am trying to understand how to read information form an input file and write that data into an output file. I understand how to read from a file and dispaly its contents, but I DONT understand how ...
2
votes
3answers
82 views
It's possible to write data of an unopened C++ ofstream to a file?
With unopened I mean:
ofstream outFile;
outFile << "Some text";
So I put text in an ofstream without call the .open() method. g++ does not complain, so maybe I still can save the data? How?
2
votes
2answers
234 views
C++ ofstream not operating as expected
I have a feeling that I'm missing something obvious but can't seem to resolve the following:
Please see the code below. All it does is loop 20 times and write the index of a loop to a file. After ...
2
votes
5answers
416 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
2answers
119 views
How do I find the directory path of a file I created from ofstream in C++?
I want to get the directory of a file which I created using ofstream.
Code I wrote is something like
std::ofstream txt("sample.txt", std::ios::binary);
Then I write some things to the txt file, ...
2
votes
1answer
288 views
Why does ofstream insert a 0x0D byte before 0x0A?
I'm outputing an array of unsigned characters in C++ using ofstream fout("filename");
but it produces a spurious character in between. This is the part of the code that makes the problem:
for(int i = ...
2
votes
1answer
354 views
ofstream does not print out newline to txt in Windows7
I have some issue when I want to print out \n I'm using endl for that. And the problem is when I run the code on Windows7 it won't print out the newline. But it will print out newline in Ubuntu. Both ...
2
votes
1answer
911 views
overloaded operator << on ofstream concatenation problems
I have the following code:
struct simple
{
simple (int a1, int a2) : member1(a1), member2(a2) {}
int member1;
int member2;
};
std::ofstream &operator << (std::ofstream &f, ...
2
votes
4answers
450 views
Check if ostream object is cout or ofstream, c++
Is there a way in C++ to check if an ostream object is cout or a ofstream object?
Something like:
ostream& output(ostream& out)
{
if (out == cout)
return out;
else
{
...
2
votes
4answers
746 views
ofstream doesn't flush
I have the following code, running on Suse 10.1 / G++ 4.1.0, and it doesn't write to the file:
#include <fstream>
#include <iostream>
int main(){
std::ofstream file("file.out");
...
2
votes
3answers
727 views
C++ ofstream cannot write to file
Hey I am trying to write some numbers to a file, but when I open the file it is empty. Can you help me out here? Thanks.
/** main function **/
int main(){
/** variables **/
RandGen* ...
2
votes
3answers
830 views
C++ ofstream vs. C++ cout piped to file
I'm writing a set of unit tests that write calculated values out to files. Each test produces a square matrix that holds anywhere from 50,000 to 500,000 doubles, and I have a total of 128 combinations ...
2
votes
2answers
1k views
How to do fsync on an ofstream?
I want to make sure that an ofstream has been written to the disk device. What's the portable way (portable on POSIX systems) of doing this?
Does that solve the problem if I open the file separately ...
2
votes
2answers
618 views
How do I write binary data for 7z archive format?
I've been pouring over the format description and source code for the 7z archive format, but I'm still having trouble writing a valid container. I assume I can create an empty container... anyway ...
1
vote
0answers
45 views
how to replace a line in a file with another line c++ [closed]
Possible Duplicate:
C++ Read file and replace
I want to replace a line with another line in a file. I can't create a new file and than replace the existing one.
Pleace help.
I am working ...
1
vote
1answer
97 views
Use logical OR || to combine two integers?
In this MSDN article on file sharing mode with std::ofstream, Microsoft writes:
To combine the filebuf::sh_read and filebuf::sh_write modes, use the logical OR (||) operator.
Both constants are ...
1
vote
2answers
146 views
fstream ifstream I don't understand how to load a data file into my program
My professor is very smart but expects complete noobs like me to just know how to program c++. I don't understand how the fstream function works.
I will have a data file with three columns of data. I ...
1
vote
1answer
58 views
std::ofstream repeats and looses written data for no reason
I've just witnessed an insanely bizzare behaviour of the std::ofstream::write method. I am writing my own handling of Windows' BMP file format which includes saving a bitmap to a file - that's as an ...
1
vote
4answers
114 views
how to print \" in C++
I need to print a string that says exactly:
std::string("-I\"/path/to/dir\" ");
Basically, I need to do this because I am using C++ code to generate C++ code.
I want to write the above string via ...
1
vote
3answers
116 views
ofstream doesn't open, or write to files
I've been looking at this for hours and I just know the answer is simple. It seems no matter what I do I cannot open a file. It's a multi-class program so in the header I have
#include ...
1
vote
1answer
66 views
C++ writing to a Binary file with ofstream
For a small file format I'm developing I need to output a header of 519 bytes to a file. I'm a bit new to the whole ofstream concept. Though I have some experience with reading the header of a ...
1
vote
6answers
160 views
C++, std::ofstream, exception
What is wrong in this code and how to fix it?
int _tmain(int argc, _TCHAR* argv[])
{
std::ostream * o = &std::cout;
char text[4096];
char *file = "D://test.txt";
if ( file != NULL )
{
strcpy ...
1
vote
2answers
185 views
Problem with ostream/ofstream inheritance
I'm writing a C++ program and I need some help understanding an error.
By default, my program prints to the terminal (STDOUT). However, if the user provides a filename, the program will print to that ...
1
vote
2answers
74 views
Proper choice of file stream objects
Application uses RapidXML to edit XML file. Editing is not automated and takes place occasionally: XML content is displayed in GUI and user performs some actions which change XML. Each change must be ...
1
vote
2answers
206 views
ofstream leaking memory
I have a C++ class that writes its data out to a binary std::ofstream. The class is storing the data as a boost:shared_array but I have eliminated this as the problem. The problem is with the call ...
1
vote
5answers
272 views
Faster Alternative to std::ofstream
I generate a set of data files. As the files are supposed to be readable, they text files (opposed to binary files).
To output information to my files, I used very comfortable std::ofstream object.
...
1
vote
2answers
116 views
C++ IO binary file streams: default value when output isn't specified
My question is about binary file I/O. Suppose the following code is run:
#include <iostream>
#inclide <fstream>
int main(){
fstream out;
...
1
vote
4answers
1k views
std::ofstream, check if file exists before writing
I am writing a save file functionality with Qt application written in C++.
I am looking for a way to check to see if the selected file already exists before writing to it, so that I can prompt a ...
1
vote
4answers
202 views
Write quotes to a text file using ofstream, c++
I want to write out quotes to be in the file and I don't know how the syntax should look.
ofstream file("myfile.txt");
if ( file.is_open())
{
file << "\n";
file << ...
1
vote
1answer
114 views
what is a ofstream desination?
In the following C++ function:
void save_data(ofstream &csv){
csv << "a message";
}
something I cannot understand: if save_data is called, where does it write to? a file? ...
1
vote
5answers
460 views
ofstream doesn't write buffer to file
I'm trying to write the contents of buf pointer to the file created by ofstream.
For some reason the file is empty, however the contents of buf is never empty... What am I doing wrong?
void ...
1
vote
2answers
358 views
c++ passing unknown type to a function and any Class type definition
I am trying to create a generic class to write and read Objects to/from file.
Called it ActiveRecord class
only has one method, which saves the class itself:
void ActiveRecord::saveRecord(){
string ...
1
vote
4answers
235 views
C++ File I/O problem
I am trying to open a file which normally has content, for the purpose of testing i will like to initialize the program without the files being available/existing so then the program should create ...
1
vote
4answers
267 views
How do you search a document for a string in c++?
Here's my code so far:
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
int main()
{
int count = 0;
string fileName;
string keyWord;
...
1
vote
3answers
1k views
Returning ifstream in a function
Here's probably a very noobish question for you: How (if at all possible) can I return an ifstream from a function?
Basically, I need to obtain the filename of a database from the user, and if the ...
1
vote
4answers
1k views
Partially truncating a stream (fstream or ofstream) in C++
I am trying to partially truncate (or shorten) an existing file, using fstream. I have tried writing an EOF character, but this seems to do nothing.
Any help would be appreciated...