This code is all untested but it should do something like what you
want. Note that filecopy will not create backups, if there is another
file with the same name in the new directory it will overwrite it.
Also, Kill removes the file ocmpletely, once it's dead, it's gone.
***Make backups before testing any of this.
***Look up any of the functions that you don't understand.
dim olddir as string, newdir as string, strfile as string
olddir = path to the folder you're copying from
newdir = path to the folder you're moving to
strfile = dir(olddir & "*.*")
do while len(strfile) > 0
if not strfile like "*.html" then
filecopy olddir & strfile, newdir & strfile
kill olddir & strfile
end if
strfile = dir()
loop
Cheers,
Jason Lepack