Hi,
I have several large folders with lots of files in them. What I'm looking for in example is a program that will take all of the files with a certain name and send them to a relating folder with the same name. For example if I have say 20 videos named Smurf, the program would move all 20 to a folder named Smurf. Basically I'm working with a lot of flv's with different names but some are related by name and content and I need them in their own folder.
Has anyone heard of a program like this?
Thanks
+ Reply to Thread
Results 1 to 8 of 8
-
Nick
-
Unfortunately I'm not all that versed in DOS. I would say It may be better suited if it was something that could routinely monitor the source folder then sort files as they are created in the folder. Basically what I'm doing is recording streams into a folder then manually sorting them later and it takes hours upon hours.
Nick -
Well here is a little DOS code I just found and modified:
setlocal ENABLEDELAYEDEXPANSION
set /a c=0
FOR %%i in (smurf*.flv) do (
set /a c=c+1
move "%%i" "smurf"!c!
)
endlocal
essentially 'smurf*' is any flv that starts with smurf. When a file is located it is moved to a folder previously created called smurf.
Run the code in the command window in the folder where the files are.Last edited by DB83; 28th Sep 2012 at 17:51.
-
Thinking back to my usenet days, the one program that could shift files automatically was called 'Hunter'.
This program would not normally help you here since you are the original creator. It worked on the principal that you created a CSV (using the program) of files in your own collection. You then shared the CSV with other collectors who used their copy of the same program to check their own files against the CSV, rename them if neccessary or even locate duplicates, and then move them in to folders according to the structure of the original.
I suppose you could use this to create a CSV. You would then have to edit it to include the folders where you want to place the files and then run the program against your edited CSV. By that time you could have manually created the folders and drag/droppd the files in to them. Use a naming convention that allows you to do sorts within Windows Explorer which then makes it easy to highlight a group of files and drag/drop them. -
Go directly to http://www.jpsoft.com and get a copy of Take Command! - it will work for thirty days. It will do exactly what you want, including monitoring a folder, with a little programming. It's DOS on steroids, updated for Windows.
-
Belvedere can automatically move files by name, I use it for TV shows:
Similar Threads
-
Automated Split of AVI File With Vdub/VdubMod?
By onesikgypo in forum EditingReplies: 4Last Post: 27th May 2012, 18:27 -
File sorting from flash drive problem - Phillips DVP5990
By Halcon in forum DVD & Blu-ray PlayersReplies: 4Last Post: 9th Apr 2012, 17:13 -
MeGUI and Automated 3pass - File exists?
By Asterra in forum Video ConversionReplies: 1Last Post: 26th Apr 2011, 19:35 -
File Sorting in WMP 11
By SCDVD in forum Newbie / General discussionsReplies: 2Last Post: 2nd Aug 2008, 09:42 -
Sorting files DVD burn
By Whatever_works in forum Newbie / General discussionsReplies: 1Last Post: 11th May 2008, 20:42