Hi, I copied this code right off of a website and I am still getting errors. I have 2 folders, each containing some files and other folders with files. I want to copy one entire directory and replace the other.

The code I have is as follows.
VB Code:
  1. Dim orig_path, new_path As String
  2.     orig_path = App.Path & "/Support_Files/Blank_Profile/*.*"
  3.     new_path = App.Path & "/Profile/Profile/*.*"
  4.     FileCopy orig_path, new_path
  5.     MsgBox ("done")

I get an error on the FileCopy line. I am trying to copy files and other directorys, so the actual list from the Blank_Profile looks like so;
Blank_Profile/profile.ini
Blank_Profile/home_base.ini
Blank_Profile/Ship_1/information.ini
Blank_Profile/Ship_2/information.ini
I need to copy all the files as well as the folders ship_1 and the files inside. There are more files but this is just an example. I read you can copy the contents of a directory but none of the code I have works. Please help.