-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlist_file_counts.py
executable file
·104 lines (84 loc) · 3.31 KB
/
list_file_counts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/usr/bin/env python
########################################################################
# list_file_counts.py: List file counts in subdirectories
#
# Description:
# This script traverses a specified directory and lists the number of
# files present in each subdirectory. It provides a summary of the
# file counts for all subdirectories directly under the given directory.
# The output is sorted in descending order by file count for better clarity.
#
# Author: id774 (More info: http://id774.net)
# Source Code: https://github.com/id774/scripts
# License: The GPL version 3, or LGPL version 3 (Dual License).
# Contact: [email protected]
#
# Version History:
# v1.0 2025-01-05
# Initial release.
#
# Usage:
# python list_file_counts.py [directory]
# Example: python list_file_counts.py /path/to/directory
#
########################################################################
import os
def get_subdirectories(base_dir):
"""Return a list of subdirectories in the specified directory."""
try:
return [d for d in os.listdir(base_dir) if os.path.isdir(os.path.join(base_dir, d))]
except OSError as e:
raise ValueError("Error accessing directory '{}': {}".format(base_dir, e))
def count_files_in_directory(directory):
"""Return the number of files in a directory."""
try:
return len([f for f in os.listdir(directory) if os.path.isfile(os.path.join(directory, f))])
except OSError as e:
raise ValueError("Error accessing directory '{}': {}".format(directory, e))
def count_files_in_subdirectories(base_dir):
"""Count the number of files in each subdirectory of a base directory."""
subdirs = get_subdirectories(base_dir)
file_counts = {}
for subdir in subdirs:
subdir_path = os.path.join(base_dir, subdir)
try:
file_counts[subdir] = count_files_in_directory(subdir_path)
except ValueError as e:
print(e)
continue
return file_counts
def sort_file_counts(file_counts):
"""Sort file counts dictionary by file count in descending order."""
return sorted(file_counts.items(), key=lambda x: x[1], reverse=True)
def print_file_counts(base_dir, sorted_counts):
"""Print file counts for each subdirectory."""
print("File counts in subdirectories of '{}':".format(base_dir))
for subdir, count in sorted_counts:
print("{:30}: {}".format(subdir, count))
def main(args):
"""Main function for script execution."""
if len(args) != 2:
print("""
Usage: python list_file_counts.py [directory]
This script lists the number of files in each subdirectory of the specified directory.
The output is sorted in descending order by file count.
Arguments:
directory The path of the directory to analyze.
Example:
python list_file_counts.py /path/to/directory
""")
return 1
base_dir = args[1]
if not os.path.exists(base_dir):
print("The directory '{}' does not exist.".format(base_dir))
return 1
if not os.path.isdir(base_dir):
print("'{}' is not a directory.".format(base_dir))
return 1
file_counts = count_files_in_subdirectories(base_dir)
sorted_counts = sort_file_counts(file_counts)
print_file_counts(base_dir, sorted_counts)
return 0
if __name__ == '__main__':
import sys
sys.exit(main(sys.argv))