On *NIX systems, is there a way to find out how many open filehandles are there in the current running process?
I am looking for an API or a formula for use in C, from within the running process in question.
|
feedback
|
|
On certain systems (see below) you can count them in /proc/[pid]/fd. If not on one of those, see below for: wallyk's answer. In c, you can list the dir and count the total, or list the dir contents:
In bash, something like:
| |||||||||||||
feedback
|
|
An idea which comes to mind which should work on any *nix system is:
| |||||||||||||
feedback
|
|
OpenSSH implements a | |||
|
feedback
|
|
There is no portable way to get the number of open descriptors (regardless of type), unless you keep track of them yourself. | |||
|
feedback
|