Needed: Program that manages downloads...

Rip the Jacker

Diamond Member
Dec 29, 2004
5,415
1
76
I'm wondering if there's a program out there that can manage my downloads.

For example, every .wmv, .mpg, and .mov file that I download will go to a certain folder, and every .jpg, .png, .gif, .swf file will go to another folder.

 

nweaver

Diamond Member
Jan 21, 2001
6,813
1
0
aka a script that runs every X minutes, and moves a file from the base download folder to the appropriate folder based on it's extension or name?

Script it. Batch file could do this, or vbscript (assuming windows) or even a perl (would be damn easy) or shell if linux.
for *.jpg in ls /dir
move to/dir

repeat for each file type.