You can make a refrence to the microsoft runtime library and then do the following
It's a little messy.
VB Code:
  1. Dim objFSO As New FileSystemObject
  2.    Dim objFolder As Folder
  3.    Dim sDestination As String
  4.    Dim sSource As String
  5.    
  6.    sDestination = "C:\program Files\testfolder\"
  7.    sSource = App.Path
  8.    Set objFSO = New FileSystemObject
  9.     If Not objFSO.FolderExists(sDestination) Then
  10.         objFSO.CreateFolder (sDestination)
  11.     End If
  12.    
  13.     objFSO.CopyFolder sSource, sDestination, True