#1 : 25/03-20 13:37 Justin Davidson
Posts: 1
|
I have a group of files that comes in everyday in the following format:
CKRUMANA_20200324060714_email.csv The middle changes each day by the date, so the file name changes each day. I am looking to rename these files and move them automatically if possible each day. The file rename would make the above become: email.csv Any help or guidance on this? I have it working in the program if I do it by hand but I would rather automate this. |
#2 : 02/04-20 18:33 David Lee
Posts: 1125
|
Replace method with...
Text to be replaced: .*_ Replace with: blank Use regular expressions ... will remove everything up to and including the final "_". At the same time select Batch mode: Move and enter a suitable Output folder for the day's files. Is that what you wanted? |