Search found 3 matches

by zthaynes
04 Mar 2015, 23:41
Forum: Scripting and Automation
Topic: rename only unprocessed files
Replies: 3
Views: 2911

Re: rename only unprocessed files

I have googled until I can't google anymore. For anyone that is interested... I figured out a solution all on my own. :D Here is a snippet from the batch file I created. @echo off cls ::FIND ANY MP4 FILE IN ANY SUB FOLDER for /D %%d in (E:\*) do if exist "%%d\*.mp4" ( ::RENAME THOSE FILES filebot ...
by zthaynes
04 Mar 2015, 20:43
Forum: Scripting and Automation
Topic: rename only unprocessed files
Replies: 3
Views: 2911

Re: rename only unprocessed files

So... will rename do it then, or do I need to use copy and then delete the old files from the input folder from my batch script? Either way will this allow the script to function and is my syntax correct?

Fyi: sorry for posting to the wrong area... can the mods move this?
by zthaynes
04 Mar 2015, 20:07
Forum: Scripting and Automation
Topic: rename only unprocessed files
Replies: 3
Views: 2911

rename only unprocessed files

Hello all... My name is Zach and I am a filebot noob :) That being said I am not completely computer illiterate, I grew up using the windows that ran on top of dos... I frequently try out different linux distros (and go back to windows)... I will normally try and try and try and try until I figure ...