| > there a way to seperate the word files and copy them
> to another folder easily? i want to download a
If you use the local structure="x in web/x" instead of the default site
structure, all files of a type would be in one directory to start with.
Otherwise use the command line to copy them.
for /R %F in (*.doc *.odf ...) do copy "%F" "where\you\want"
| |