vote up 2 vote down star

How to identify whether a file is a normal file or a directory using python? thanks

flag

5 Answers

vote up 11 vote down

os.path.isdir() and os.path.isfile should give you what you want. See: http://docs.python.org/library/os.path.html

link|flag
Why the down vote? – PTBNL Jun 6 at 3:08
vote up 5 vote down

As other answers have said, os.path.isdir() and os.path.isfile() are what you want. However, you need to keep in mind that these are not the only two cases. Use os.path.islink() for symlinks for instance. Furthermore, these all return False if the file does not exist, so you'll probably want to check with os.path.exists() as well.

link|flag
vote up 1 vote down
import os

if os.path.isdir(d):
    print "dir"
else:
    print "file"
link|flag
vote up 0 vote down

os.path.isdir('string')
os.path.isfile('string')

link|flag
vote up 0 vote down

try this:

import os.path
if os.path.isdir("path/to/your/file"):
    print "it's a directory"
else:
    print "it's a file"
link|flag

Your Answer

Get an OpenID
or

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