I need the Python code to recursively search through a given path and return the number of files, folders and symbolic links within the location passed in? It should just do the search of the directory once and then increment the value of num of files, num of dirs, num of symbolic links as it is executed. It shouldn't be 3 separate searches of the directory tree for each value. Help really appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Start with the example from the python library documentation for os.walk it is close to what you need. Test the directorynames and filenames with os.path.islink to seperate the dirs/files from the links. Keep three counters in the local environment, one for each of the things you want to count. |
|||
|
|
os.pathmodule. When you have some code and run into a specific problem, the community will be happy to help you. – Lev Levitsky Apr 23 '12 at 12:52