VB Code:
  1. Option Explicit
  2. Dim FSO As New FileSystemObject
  3. Private Sub Form_Load()
  4. Copy = FSO.CopyFolder(App.Path + "\" + "files" + "\", "C:\files", True)

I am using the code above to copy the folder "files" from the app path to c:\, when i try to run the app a compile error occurs, a msgbox comes up saying
"compile error expected function or variable"
then .CopyFolder is highlighted.