Tagged Questions
0
votes
1answer
106 views
break-to-a-newline when printing 5000 floating point numbers on one line in C++ on Linux
I am working on printing out a long stream of floating point numbers to a .csv file by C++ on Linux.
I need to print 5000 numbers on one line without any break. Each number is separated by comma.
...
1
vote
1answer
118 views
nohup C++ fstream
When i compile the following C++ code with g++ under Linuxit works fine, however when i try to run
nohup ./a.out &
it stops immediately with info
[7]+ Stopped nohup ./a.out
...
2
votes
1answer
84 views
c++ opening file with non-Latin name
I have such files. I just want to open files with non-Latin names correctly.
I have no problems with files that have Latin names only with non-Latin names.
I use QDir for scanning directory and I ...
-1
votes
1answer
101 views
C++ no match for ‘operator<<’ in ‘money << score’ [closed]
So, I'm trying to make a roulette game where score gets saved to a file called "score.txt" to familiarize myself with file i/o. But I've ran into a slight problem. When I try to compile, I get the ...
0
votes
2answers
152 views
what would make ios::fail() evaluate to 1?
i am trying to open a file with
27 string tline;
28 ifstream finp; // input file
29 ifstream dinp; // data files
30
31 finp.open(argv[1]);
32
33
34 cout << "finp.good() = " ...
0
votes
5answers
542 views
Avoiding memcpy in C++ buffered output
I am trying to write directly to an fstream output buffer to avoid a memcpy.
Why does the following code not work?
It compiles, runs and produces the right length output file on Linux. But the ...
3
votes
2answers
574 views
What permissions does a file written with fstream have?
Suppose I create a file for writing like this:
std::ofstream my_file("filename", std::ios_base::out | std::ios_base::trunc);
How are the permissions of this file determined? I've had a program ...
37
votes
6answers
41k 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
877 views
Keep a stream from fstream open through member functions
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 up the framebuffer
bool ...
