Created
October 30, 2018 01:19
-
-
Save zcaceres/db6ba2b7d6683bdd3fa5db7fec7be3cc to your computer and use it in GitHub Desktop.
Composer Deep Learning Script #1
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
#!/usr/bin/env python3 | |
from pathlib import Path | |
from sys import argv | |
# Downcases a the names of all directories inside the current directory. | |
path = Path('.') | |
dirs = [file for file in path.iterdir() if file.is_dir()] | |
for (x, dir) in enumerate(dirs): | |
print('Changing', dir) | |
dir.rename(dir.name.lower()) | |
print('Done') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment