Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Statistics on the number of specified directory folders, file types and total file size

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

#!/ usr/bin/env python

# encoding: utf-8

"""

@author: eguotangseng

@file: file_type.py

@time: 2020/02/11

"""

import os

"""

Count all the different subfile types and memory consumption by a given directory

"""

size_dict = {}

type_dict = {}

def get_size_type(path):

files = os.listdir(path)

for filename in files:

temp_path = os.path.join(path, filename)

if os.path.isdir(temp_path):

get_size_type(temp_path) #recursion

elif os.path.isfile(temp_path):

type_name=os.path.splitext(temp_path)[1]

#files without suffix names

if not type_name:

type_dict.setdefault("None", 0)

type_dict["None"] += 1

size_dict.setdefault("None", 0)

size_dict["None"] += os.path.getsize(temp_path)

else:

type_dict.setdefault(type_name, 0)

type_dict[type_name] += 1

size_dict.setdefault(type_name, 0)

size_dict[type_name] += os.path.getsize(temp_path) #Get file size

path= "path"

get_size_type(path)

for each_type in type_dict.keys():

print ("There are [ %d] files [ %s] in this folder, occupying memory [%.2f] MB" %

(each_type,type_dict[each_type],size_dict[each_type]/(1024*1024)))

print("Total number of files: [ %d]"%(sum(type_dict.values())))

print("Total memory size: [%.2f] GB"%(sum(size_dict.values())/(1024**3)))

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report