forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validate Python filenames (TheAlgorithms#1086)
- Loading branch information
1 parent
7b2c954
commit a9ecdb3
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
from build_directory_md import good_filepaths | ||
|
||
filepaths = list(good_filepaths()) | ||
assert filepaths, "good_filepaths() failed!" | ||
|
||
|
||
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") | ||
|
||
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") | ||
|
||
bad_files = len(upper_files + space_files + nodir_files) | ||
if bad_files: | ||
import sys | ||
sys.exit(bad_files) |