Skip to content

Instantly share code, notes, and snippets.

@zcaceres
Created October 30, 2018 01:19
Show Gist options
  • Save zcaceres/db6ba2b7d6683bdd3fa5db7fec7be3cc to your computer and use it in GitHub Desktop.
Save zcaceres/db6ba2b7d6683bdd3fa5db7fec7be3cc to your computer and use it in GitHub Desktop.
Composer Deep Learning Script #1
#!/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