added possibility to exclude directories with --exclude-directory option
This commit is contained in:
parent
3247286a7e
commit
d5335f3212
@ -59,6 +59,12 @@ def build_argparser():
|
||||
help="Removes previously made index.html. Warning: this will remove ALL index.html files in the directories listed",
|
||||
action="store_true")
|
||||
|
||||
parser.add_argument(
|
||||
'-e',
|
||||
'--exclude-directory',
|
||||
help="Exclude one or multiple directories from indexing",
|
||||
nargs="*")
|
||||
|
||||
return parser
|
||||
|
||||
|
||||
|
@ -70,8 +70,17 @@ def div(args, type_, subtype, tag, name):
|
||||
|
||||
def distribusify(args, directory): # noqa
|
||||
for root, dirs, files in os.walk(directory):
|
||||
|
||||
if args.exclude_directory:
|
||||
if args.verbose:
|
||||
print('Excluding directory:', ", ".join(args.exclude_directory))
|
||||
dirs[:] = [d for d in dirs if d not in args.exclude_directory]
|
||||
|
||||
|
||||
|
||||
if not args.remove_index:
|
||||
html = []
|
||||
|
||||
if args.verbose:
|
||||
print('Generating directory listing for', root)
|
||||
|
||||
@ -147,6 +156,7 @@ def distribusify(args, directory): # noqa
|
||||
|
||||
if not args.no_template:
|
||||
f.write(html_footer)
|
||||
|
||||
if args.remove_index:
|
||||
index = os.path.join(root, 'index.html')
|
||||
if 'index.html' in files:
|
||||
|
Loading…
Reference in New Issue
Block a user