Given a FILE*, is it possible to determine the underlying type? That is, is there a function that will tell me if the FILE* is a pipe or a socket or a regular on-disk file?
|
feedback
|
|
There's a NAME stat, fstat, lstat - get file status SYNOPSIS
You can get the fd by calling Then you can call | |||
feedback
|
|
Use the fstat() function. However, you'll need to use the fileno() macro to get the file descriptor from file FILE struct.
| |||
feedback
|