Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #29528
| References | <CANXECd56v1aefBgEeFv6=96w9ooM-HyjbpvE+d2SaZpRXhX7Mg@mail.gmail.com> |
|---|---|
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Date | 2012-09-19 15:09 -0600 |
| Subject | Re: How to get the list of all my open file(descriptor)s and locks? |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.942.1348089019.27098.python-list@python.org> (permalink) |
On Wed, Sep 19, 2012 at 11:34 AM, Ismael Farfán <sulfurfff@gmail.com> wrote:
> So the question:
> * If I execve a python script (from C), how can I retrieve the list of
> files, and optionally the list of locks, from within the execve(d)
> python process so that I can use them?
>
>
> Some more info:
> I'm working with exotic stuff like AIX and Solaris 10 (Windows and
> linux too :) and my lowest common denominator is python 2.3.
You could do:
os.listdir("/proc/%d/fd" % os.getpid())
This should work on Linux, AIX, and Solaris, but obviously not on Windows.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: How to get the list of all my open file(descriptor)s and locks? Ian Kelly <ian.g.kelly@gmail.com> - 2012-09-19 15:09 -0600
csiph-web