Possible Duplicate:
How to identify whether a file is normal file or directory using python
How do you check if a path is a directory or file in python?
How do you check if a path is a directory or file in python? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||
|
|
|
Many of the Python directory functions are in the
|
|||
|
|
|
An education example from the stat documentation:
|
|||
|
|
|
use more info here http://docs.python.org/library/os.path.html |
|||
|
|
|
If you check to see if there is a directory present, it should tell you if it's a file or not (if there's not a directory, I'm assuming you can safely assume that because there's not a directory there must be a file there). |
|||
|
|