Yes It's possible to search files on your drive like c: or d: or e:
$search="DIR /s e:\*.gif>>out.txt";
system ($search);
Here you use
dir windows command to search
*.gif images on
e: (e drive) and store result in
out.txt file
If you check out.txt file you will see all result like search function.
DIR /s e:\*.gif
>>out.txt
In this >>out.txt to write result in out.txt file if you don't want remove this....i am giving this to check result..
then
/s for searching file including sub folders in your path...
here path is e:
you have write code for what you search and create string
like
DIR /s e:\*.gif this
when you found record move image to your destination folder
Hope it helps you...