-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtree_config.xml
More file actions
38 lines (36 loc) · 1.41 KB
/
tree_config.xml
File metadata and controls
38 lines (36 loc) · 1.41 KB
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
<!-- 这个文件若填写相对路径,是相对于本文件的 -->
<config>
<!-- 位置 -->
<!-- 根目录 -->
<root_dir>.</root_dir>
<!-- TreeInfoTip配置文件位置,默认名字是DirectoryV3.xml,请以该名结尾 -->
<tree_info_tip_xml>./DirectoryV3.xml</tree_info_tip_xml>
<!-- 输出位置 -->
<output_dir>.</output_dir>
<!-- 输出文件名 -->
<output_name>dir_tree</output_name>
<!-- 扫描 -->
<!-- 忽略.开头的文件夹 -->
<ignore_dot_dir>true</ignore_dot_dir>
<!-- 忽略.开头的文件 -->
<ignore_dot_file>true</ignore_dot_file>
<!-- 忽略的文件后缀名 -->
<ignore_file_suffix_list>.pyc,.log</ignore_file_suffix_list>
<!-- 忽略的文件夹 -->
<ignore_dir_list>__pycache__,user_files,dist</ignore_dir_list>
<!-- 忽略文件 -->
<ignore_file>false</ignore_file>
<!-- 简略显示,忽略目录中没有备注信息的项 -->
<simply_show_dir_list>Demo</simply_show_dir_list>
<!-- 预览 -->
<!-- 输出格式: text或markdown -->
<output_type>text</output_type>
<!-- 最短桥梁长度 -->
<least_indent_length>2</least_indent_length>
<!-- 桥梁连接符 -->
<bridge_symbol>-</bridge_symbol>
<!-- 始终显示桥梁 -->
<always_show_bridge>false</always_show_bridge>
<!-- 注释前缀 -->
<comment_prefix>#</comment_prefix>
</config>