23 lines
675 B
Python
23 lines
675 B
Python
'''
|
|
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:]
|
|
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]
|
|
newname = [random.choice(string.ascii_lowercase) for x in range(9)]
|
|
newname = ''.join(newname)
|
|
newname = newname + extension
|
|
newname = os.path.join(folder, newname)
|
|
#os.rename(filepath, newname)
|
|
print('%s -> %s' % (filepath, newname))
|