Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting an error in a program that is supposed to run for a long time that too many files are open. Is there any way I can keep track of which files are open so I can print that list out occasionally and see where the problem is?

share|improve this question

6 Answers

up vote 9 down vote accepted

I ended up wrapping the built-in file object at the entry point of my program. I found out that I wasn't closing my loggers.

import __builtin__
openfiles = set()
oldfile = __builtin__.file
class newfile(oldfile):
    def __init__(self, *args):
        self.x = args[0]
        print "### OPENING %s ###" % str(self.x)            
        oldfile.__init__(self, *args)
        openfiles.add(self)

    def close(self):
        print "### CLOSING %s ###" % str(self.x)
        oldfile.close(self)
        openfiles.remove(self)
oldopen = __builtin__.open
def newopen(*args):
    return newfile(*args)
__builtin__.file = newfile
__builtin__.open = newopen

def printOpenFiles():
    print "### %d OPEN FILES: [%s]" % (len(openfiles), ", ".join(f.x for f in openfiles))
share|improve this answer
Worked like a charm for me, thanks for sharing! – Kenneth Hoste Apr 27 at 17:46

On Linux, you can look at the contents of /proc/self/fd:

$ ls -l /proc/self/fd/
total 0
lrwx------ 1 foo users 64 Jan  7 15:15 0 -> /dev/pts/3
lrwx------ 1 foo users 64 Jan  7 15:15 1 -> /dev/pts/3
lrwx------ 1 foo users 64 Jan  7 15:15 2 -> /dev/pts/3
lr-x------ 1 foo users 64 Jan  7 15:15 3 -> /proc/9527/fd
share|improve this answer
Is this just for CPython or all implementations? I remember seeing, I think, that files open in ipython are listed in /proc/ipython_pid/fd/. Also, in the list above, how do you know what are files you opened and which are files that Python opened (and which you shouldn't close)? – Chris Jan 26 '12 at 11:13
1  
This is for Linux systems which provide the /proc filesystem. It's independent of language; any program in any language that can access the "files" in /proc can get this information. I haven't messed with ipython, but the basic idea would be to record the contents of /proc/self/fd after initialization and then compare the contents later in the run to look for changes. – Mike DeSimone Jan 26 '12 at 14:18

On Linux, you can use lsof to show all files opened by a process.

share|improve this answer
1  
Has python some internal function for lsof, or I really have to call linux lsof? – sumid Sep 6 '11 at 21:02

Although the solutions above that wrap opens are useful for one's own code, I was debugging my client to a third party library including some c extension code, so I needed a more direct way. The following routine works under darwin, and (I hope) other unix-like environments:

def get_open_fds():
    '''
    return the number of open file descriptors for current process

    .. warning: will only work on UNIX-like os-es.
    '''
    import subprocess
    import os

    pid = os.getpid()
    procs = subprocess.check_output( 
        [ "lsof", '-w', '-Ff', "-p", str( pid ) ] )

    nprocs = len( 
        filter( 
            lambda s: s and s[ 0 ] == 'f' and s[1: ].isdigit(),
            procs.split( '\n' ) )
        )
    return nprocs

If anyone can extend to be portable to windows, I'd be grateful.

share|improve this answer

On Windows, you can use Process Explorer to show all file handles owned by a process.

share|improve this answer

I'd guess that you are leaking file descriptors. You probably want to look through your code to make sure that you are closing all of the files that you open.

share|improve this answer
I figured that's what the problem was. However the code is very complex, and this would be an easy way to immediately spot which files aren't being closed. – Claudiu Jan 7 '10 at 21:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.