2019-07-30 18:02:13 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
2020-07-06 15:44:19 +08:00
|
|
|
|
2020-09-29 05:41:04 +08:00
|
|
|
try:
|
|
|
|
from .build_directory_md import good_file_paths
|
|
|
|
except ImportError:
|
2021-04-07 10:42:56 +08:00
|
|
|
from build_directory_md import good_file_paths # type: ignore
|
2019-07-30 18:02:13 +08:00
|
|
|
|
2020-03-04 20:40:28 +08:00
|
|
|
filepaths = list(good_file_paths())
|
|
|
|
assert filepaths, "good_file_paths() failed!"
|
2019-07-30 18:02:13 +08:00
|
|
|
|
|
|
|
upper_files = [file for file in filepaths if file != file.lower()]
|
|
|
|
if upper_files:
|
|
|
|
print(f"{len(upper_files)} files contain uppercase characters:")
|
|
|
|
print("\n".join(upper_files) + "\n")
|
|
|
|
|
|
|
|
space_files = [file for file in filepaths if " " in file]
|
|
|
|
if space_files:
|
|
|
|
print(f"{len(space_files)} files contain space characters:")
|
|
|
|
print("\n".join(space_files) + "\n")
|
|
|
|
|
2020-09-19 13:13:10 +08:00
|
|
|
hyphen_files = [file for file in filepaths if "-" in file]
|
|
|
|
if hyphen_files:
|
2020-09-19 13:25:18 +08:00
|
|
|
print(f"{len(hyphen_files)} files contain hyphen characters:")
|
2020-09-19 13:13:10 +08:00
|
|
|
print("\n".join(hyphen_files) + "\n")
|
|
|
|
|
2019-07-30 18:02:13 +08:00
|
|
|
nodir_files = [file for file in filepaths if os.sep not in file]
|
|
|
|
if nodir_files:
|
|
|
|
print(f"{len(nodir_files)} files are not in a directory:")
|
|
|
|
print("\n".join(nodir_files) + "\n")
|
|
|
|
|
2020-09-19 13:13:10 +08:00
|
|
|
bad_files = len(upper_files + space_files + hyphen_files + nodir_files)
|
2019-07-30 18:02:13 +08:00
|
|
|
if bad_files:
|
|
|
|
import sys
|
2019-10-05 13:14:13 +08:00
|
|
|
|
2019-07-30 18:02:13 +08:00
|
|
|
sys.exit(bad_files)
|