I want to be able to copy a directory of files (all .HTM files) from a
network drive to a local drive on the machine c:\HTMFiles , How can i do
that?
I tried File.Copy(source, dest) but i need to put the file name in the dest
section. I just want to copy the entire directory since I don't know all the
file names just the extensions. Would
File.Copy("\servername\folder", "c:\\HTMFiles\*.HTM") work or no?
thx