Is it possible to get the filename of a file descriptor in C?
|
|
You can use Of course, not all file descriptors refer to files, and for those you'll see some odd text strings, such as |
|||||||||||||
|
|
As Tyler points out, there's no way to do what you require "directly and reliably", since a given FD may correspond to 0 filenames (in various cases) or > 1 (multiple "hard links" is how the latter situation is generally described). If you do still need the functionality with all the limitations (on speed AND on the possibility of getting 0, 2, ... results rather than 1), here's how you can do it: first, fstat the FD -- this tells you, in the resulting If the stats give you hope, then you have to "walk the tree" of directories on the relevant device until you find all the hard links (or just the first one, if you don't need more than one and any one will do). For that purpose, you use readdir (and opendir &c of course) recursively opening subdirectories until you find in a If this general approach is acceptable, but you need more detailed C code, let us know, it won't be hard to write (though I'd rather not write it if it's useless, i.e. you cannot withstand the inevitably slow performance or the possibility of getting != 1 result for the purposes of your application;-). |
|||
|
|
|
Before writing this off as impossible I suggest you look at the source code of the lsof command. There may be restrictions but lsof seems capable of determining the file descriptor and file name. This information exists in the /proc filesystem so it should be possible to get at from your program. |
|||
|
|
|
In Windows, with GetFileInformationByHandleEx, passing FileNameInfo, you can retrieve the file name. |
|||||
|
|
I had this problem on Mac OS X. We don't have a We do, instead, have a
So to get the file associated to a file descriptor, you can use this snippet:
Since I never remember where |
|||
|
|
|
Impossible. A file descriptor may have multiple names in the filesystem, or it may have no name at all. Edit: Assuming you are talking about a plain old POSIX system, without any OS-specific APIs, since you didn't specify an OS. |
|||||||||||||||||||
|
|
You can use fstat() to get the file's inode by struct stat. Then, using readdir() you can compare the inode you found with those that exist (struct dirent) in a directory (assuming that you know the directory, otherwise you'll have to search the whole filesystem) and find the corresponding file name. Nasty? |
||||
|
|
|
Use |
|||||
|