0
votes
3answers
86 views
fclose()/pclose() may block on some file pointers
Calling fclose() here after dup()ing its file descriptor blocks until the child process has ended (presumably because the stream has ended).
FILE *f = popen("./output", "r");
int …
2
votes
2answers
72 views
freopen: reverting back to original stream
Hello, I needed to forward stdout to different files to separate some prints produced and the reverting back to normal stdout.
I used freopen to switch to the file in this way:
c …
0
votes
8answers
107 views
opening a file with fopen
I've been trying to open a file and output text, but I keep getting errors. So I thought I would start at the very beginning and just try opening the file. This is my code:
#inc …
4
votes
5answers
1k views
How can you flush a write using a file descriptor?
It turns out this whole misunderstanding of the open() versus fopen() stems from a buggy I2C driver in the Linux 2.6.14 kernel on an ARM. Backporting a working bit bashed drive …
2
votes
5answers
200 views
char *a, *b; what type is (b-a) and how do I printf it?
{
char *a, *b;
printf("%lx\n",(b-a));
}
Usually works, in fact, I can't imagine it giving a warning or failing on a 32-bit or 64-bit machine. But is that the proper thing to …
2
votes
6answers
414 views
Tried and true simple file copying code in C?
Hello! This looks like a simple question, but I didn't find anything similar here.
Since there is no file copy function in C, we have to implement file copying ourselves, but I do …
1
vote
6answers
349 views
C++: Correct order for including both <cstdio> and <stdio.h>?
I need to use system-specific functions, e.g. ftello() (defined in stdio.h as per POSIX standard).
I also need to use standard C++ features, e.g. std::sprintf() (defined in cstdio, …
2
votes
2answers
118 views
Close a FILE pointer without closing the underlying file descriptor
By using fdopen(), fileno() it's possible to open streams with existing file descriptors. However the proper way to close a file, once you've opened it with a stream is to fclose() …
0
votes
3answers
86 views
getline over a socket
Is there a libc function that would do the same thing as getline, but would work with a connected socket instead of a FILE * stream ?
A workaround would be to call fdopen on a soc …
4
votes
2answers
57 views
Detecting background operation
In C, what is the way to detect a program was called in "background mode" ?
I have a program I would like to launch either interactively or in background.
How can I detect I shoul …
4
votes
6answers
300 views
Getting another program’s output as input on the fly
I've two programs I'm using in this way:
$ c_program | python_program.py
c_program prints something using printf() and python_program.py reads using sys.stdin.readline()
I'd …
3
votes
3answers
105 views
Is it ‘safe’ to remove() open file?
I think about adding possibility of using same the filename for both input and output file to my program, so that it will replace the input file.
As the processed file may be quit …
1
vote
2answers
161 views
How to get a pointer to the beginning of a file in C++
Hi
Is it possible in C++ to somehow get a pointer to the beginning of an opened file so that it ( the pointer ) can be passed to the unix write function together with the size of …
11
votes
12answers
1k views
Which I/O library do you use in your C++ code?
In new C++ code, I tend to use the C++ iostream library instead of the C stdio library.
I've noticed some programmers seem to stick to stdio, insisting that it's more portable.
I …
1
vote
1answer
52 views
Handling EXDEV error on rename() failure
On linux, the stdio function rename fails with EXDEV if both paths are not on the same volume. What is the best workaround for this? Is there another function that will handle th …
