Last active
February 14, 2017 15:07
-
-
Save pgampe/c91a79f8eeecfd2a022122b7c0aaabb0 to your computer and use it in GitHub Desktop.
Migrate offlineimap separator from point to slash by moving all folders
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
import os | |
os.chdir('/path/to/your/local/copy/here') | |
dirs = os.listdir() | |
dirs.sort(key=len, reverse=True) | |
i = 0 | |
for org_dir in dirs: | |
if '.' not in org_dir: | |
continue | |
new_dir = org_dir.replace('.', '/') | |
os.makedirs(new_dir, exist_ok=True) | |
parent_dir = os.path.dirname(new_dir) | |
if parent_dir == '': | |
continue | |
if not os.listdir(new_dir): | |
print('------------------') | |
print(org_dir) | |
print(new_dir) | |
print('------------------') | |
os.rename(org_dir, new_dir) | |
else: | |
print('------------------') | |
print(org_dir) | |
print(new_dir) | |
print('------------------') | |
dir_contents = os.listdir(org_dir) | |
for sub_dir in dir_contents: | |
old_sub_dir = org_dir + '/' + sub_dir | |
new_sub_dir = new_dir + '/' + sub_dir | |
print(old_sub_dir) | |
print(new_sub_dir) | |
os.rename(old_sub_dir, new_sub_dir) | |
print('====================') | |
os.rmdir(org_dir) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment