84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
I have a folder/tmp, how do I know the number of files in it
/tmp
import os DIR = '/tmp' result = [name for name in os.listdir(DIR)]
The result is all files and folders under DIR. How to get the number of files
Reference article: Issues related to Python file operations
>>> import os >>> DIR = '/tmp' >>> print len([name for name in os.listdir(DIR) if os.path.isfile(os.path.join(DIR, name))])
If you count the number of folders, useos.path.isdir(path)as a judgment statement.
os.path.isdir(path)
Reference article: Issues related to Python file operations
If you count the number of folders, use
os.path.isdir(path)
as a judgment statement.