How to get the list of all my open file(descriptor)s and locks?
Ian Kelly
ian.g.kelly at gmail.com
Wed Sep 19 17:40:11 EDT 2012
More information about the Python-list mailing list
Wed Sep 19 17:40:11 EDT 2012
- Previous message (by thread): How to get the list of all my open file(descriptor)s and locks?
- Next message (by thread): How to get the list of all my open file(descriptor)s and locks?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, Sep 19, 2012 at 2:36 PM, Ismael Farfán <sulfurfff at gmail.com> wrote: > It seems like I can use os.fstat to find out if a fd exists and also > get it's type and mode (I'm getting some pipes too : ) Sure, because files and pipes both use the file descriptor abstraction. If your process does any networking, you'll find sockets in there as well.
- Previous message (by thread): How to get the list of all my open file(descriptor)s and locks?
- Next message (by thread): How to get the list of all my open file(descriptor)s and locks?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list