Answers for "python get count of files in directory"

6

python count files directory

import os
len(os.listdir(directory))
Posted by: Guest on April-03-2020
0

How to count the number of files in a directory using Python

import os, os.path

# simple version for working with CWD
print len([name for name in os.listdir('.') if os.path.isfile(name)])

# path joining version for other paths
DIR = '/tmp'
print len([name for name in os.listdir(DIR) if os.path.isfile(os.path.join(DIR, name))])
Posted by: Guest on September-05-2021

Code answers related to "python get count of files in directory"

Python Answers by Framework

Browse Popular Code Answers by Language