Thread: FileCopy
View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_3_] Jim Thomlinson[_3_] is offline
external usenet poster
 
Posts: 983
Default FileCopy

You could try:

Shell ("Command.com /c Copy C:\temp1\*.*, C:temp2\*.*")

You can check out this link.
http://support.microsoft.com/default...b;en-us;213800

HTH

"Andibevan" wrote:

I presume I need to use the filesystemobject.copyfolder method - would this
be fast enough for transfering 1/2gb of files or is there a quicker way?

"Andibevan" wrote in message
...
Hi All,

Can File copy be used with the extension *.* in order to copy the contents
of folders or does another method need to be used?

i.e. will this work?

Filecopy "C:\temp1\*.*", "C:temp2\*.*"

Ta

Andi