else/Toolbox/filenamescramble.pyw

22 lines
650 B
Python
Raw Normal View History

2015-08-20 06:58:19 +00:00
'''
Drag a file on top of this .py file, and it will have its
filename scrambled into a combination of 16 upper and lowercase
letters.
'''
import os
import random
import string
import sys
argv = sys.argv[1:]
2016-01-17 01:43:17 +00:00
print(''.join(c for c in argv if c in string.printable))
for filepath in argv:
folder = os.path.dirname(filepath)
basename = os.path.basename(filepath)
extension = os.path.splitext(basename)[1]
2015-08-20 06:58:19 +00:00
newname = [random.choice(string.ascii_letters) for x in range(16)]
newname = ''.join(newname)
2016-01-17 01:43:17 +00:00
newname = '%s\\%s%s' % (folder, newname, extension)
os.rename(filepath, newname)
print('%s -> %s' % (filepath, newname))