Thank you all!
As for DropIt I tried following, without success.
-
-
Mouser: I checked his site, likely I am overlooking it, but eh .. which AHK ?
wraith808: I came accross Belvedere, but one way or the other I could not download it and I assumed, considering the age of the program that it wasn't supported anymore, i.e. I went on.
There are many, many tools around,
see
http://www.softpedia.com/downloadTag/Monitor%20FolderAfter spending quite some time on checking them out, I also find a relatively simple solution with Powershell.
Seems to work fine.
created a powerscript file (.ps1)
e.g. MoveImages.ps1
for (;;) {
start-sleep -s 10
move-item C:\Users\Username\Documents\*.png N:\JPG\Catalog
move-item C:\Users\Username\Documents\*.jpg N:\JPG\Catalog
}
then run with powershell.
It may not be as fancy as some tools around, but effective just for this task.
I have NO knowledge of Powershell and scripting, I picked this up from Stackoverflow.
Add the .ps1 file to Windows startmenu, right-click "Run with Powershell", or better
associate .ps1 with Powershell.exe (often ps1 is associated with Notepad)
-