40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
'''
|
|
Batch rename files by replacing the first argument with the second.
|
|
|
|
Note: If one of your arguments begins with a hyphen, it will confuse argparse
|
|
and it will say "the following arguments are required". You have to add "--"
|
|
before your from/to arguments, like this:
|
|
|
|
breplace -- " - Copy" "-copy"
|
|
'''
|
|
import argparse
|
|
import brename
|
|
import sys
|
|
|
|
from voussoirkit import pipeable
|
|
|
|
def breplace_argparse(args):
|
|
replace_from = ' '.join(pipeable.input(args.replace_from))
|
|
replace_to = ' '.join(pipeable.input(args.replace_to))
|
|
|
|
if args.regex:
|
|
command = f're.sub(r"{replace_from}", r"{replace_to}", x)'
|
|
else:
|
|
command = f'x.replace("{replace_from}", "{replace_to}")'
|
|
brename.brename(command, autoyes=args.autoyes, recurse=args.recurse)
|
|
|
|
def main(argv):
|
|
parser = argparse.ArgumentParser(__doc__)
|
|
|
|
parser.add_argument('replace_from')
|
|
parser.add_argument('replace_to')
|
|
parser.add_argument('-y', '--yes', dest='autoyes', action='store_true', help='accept results without confirming')
|
|
parser.add_argument('--recurse', action='store_true', help='operate on subdirectories also')
|
|
parser.add_argument('--regex', action='store_true', help='treat arguments as regular expressions')
|
|
parser.set_defaults(func=breplace_argparse)
|
|
|
|
args = parser.parse_args(argv)
|
|
return args.func(args)
|
|
|
|
if __name__ == '__main__':
|
|
raise SystemExit(main(sys.argv[1:]))
|