by cranioDan on August 21st, 2008

cranioDan

Question

Help answer this question below.

Is there any software program that allows me to automatically extract files to specified folders based on file type? E.g. automatically send *.jpg and *bmp to C;Pictures, but *.mpg and *.avi to C:Video, *.mp3 to C:Music, and so on

Answers. 1 helpful answer below.

  • by malevolentbutticklis on August 21st, 2008

    malevolentbutticklis

    sure, I can write one for you right now

    #!/bin/bash

    cd /blah/Download
    while true
    do
    cp *.mpg /where/they/go
    cp *.avi /where/they/go
    cp *.mp4 /where/they/go
    ...
    sleep 5
    done

    You will need cygwin to run it on windoze by M$

    No comments. Post one | Permalink

Want to attach an image to your answer? Click here.

Did this answer your question? If not, then ask a new question or create a poll.

You're reading Is there any software program that allows me to automatically extract files to specified folders based on file type? E.g. automatically send *.jpg and *bmp to C;\Pictures, but *.mpg and *.avi to C:\Video, *.mp3 to C:\Music, and so on

Follow us on Facebook!

Related Ads