-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfast_DirTreeGenerator.py
58 lines (44 loc) · 1.95 KB
/
fast_DirTreeGenerator.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
import os
import sys
IGNORED_FOLDERS = ['.git', '.vscode', 'node_modules']
def create_folder_structure(folder_path, output_file):
with open(output_file, 'w', encoding='utf-8') as f:
f.write(os.path.basename(folder_path) + '\n')
generate_structure(folder_path, f, '')
def generate_structure(folder_path, f, prefix):
files = []
dirs = []
# Получаем список файлов и папок в данной директории
for item in os.listdir(folder_path):
item_path = os.path.join(folder_path, item)
if os.path.isfile(item_path):
# Добавляем файлы в конец списка
files.append(item)
elif os.path.isdir(item_path):
# Проверяем, игнорируемая ли это папка
if item in IGNORED_FOLDERS:
continue
# Добавляем папки в конец списка
dirs.append(item)
# Выводим файлы в данной директории
for i, file in enumerate(files):
is_last_file = (i == len(files) - 1 and not dirs)
file_prefix = '└──' if is_last_file else '├──'
f.write(prefix + file_prefix + ' ' + file + '\n')
# Рекурсивно обрабатываем папки
for i, dir in enumerate(dirs):
is_last_dir = (i == len(dirs) - 1)
dir_prefix = '└──' if is_last_dir else '├──'
f.write(prefix + dir_prefix + ' ' + dir + '\n')
if is_last_dir:
sub_prefix = prefix + ' '
else:
sub_prefix = prefix + '│ '
generate_structure(os.path.join(folder_path, dir), f, sub_prefix)
if __name__ == '__main__':
if len(sys.argv) < 2:
print('Usage: python script.py <folder_path>')
sys.exit(1)
folder_path = sys.argv[1]
output_file = 'folder_structure.txt'
create_folder_structure(folder_path, output_file)