Saturday, 13 August 2022

Day 53 : Count number of files and directories

 

import os


# Path IN which we have to count files and directories

PATH = 'E:\elements'   # Give your path here


fileCount = 0

dirCount = 0


for root, dirs, files in os.walk(PATH):

    print('Looking in:',root)

    for directories in dirs:

        dirCount += 1

    for Files in files:

        fileCount += 1

#clcoding.com

print('Number of files',fileCount)

print('Number of Directories',dirCount)

print('Total:',(dirCount + fileCount))

Looking in: E:\elements
Looking in: E:\elements\New folder
Number of files 8
Number of Directories 1
Total: 9


0 Comments:

Post a Comment

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (11) C (75) C# (12) C++ (81) Course (3) Data Science (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (2) PHP (20) Projects (19) Python (435) R (69) Selenium Webdriver (2) Software (14) SQL (27)