Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
3k views

Python - How do I convert “an OS-level handle to an open file” to a file object?

tempfile.mkstemp() returns "a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order." How do I convert that ...
1
vote
3answers
1k views

calling fdopen: Bad file descriptor

I'm getting the following error when trying to compile my program: calling fdopen: Bad file descriptor I've read this might be a problem related to including a precompiled header in one of my ...
0
votes
2answers
127 views

Create a file descriptor

I want to create a file descriptor in C whose value i will specify in code. I have a integer variable which specifies the value of file descriptor to be created. For example i may need a file ...
0
votes
1answer
346 views

Using FILE* and fdopen on TCP sockets

I understand that unix tcp sockets are full duplex so I can read and write to these as needed. How does this work with FILE* and fdopen?. Can I open two FILE* (read and write) on both the server and ...