vba code to copy all files into a new folder

amineact

New Member
Joined
Apr 12, 2022
Messages
17
Office Version
  1. 365
Platform
  1. Windows
Hello there, im in the process of writing a code that based on a cell value will create a new folder, name it to the cell value and then proceed to copy all the files from an already existing folder.
However, i keep getting an error : path not found
Here's the code

VBA Code:
Sub CopyFilesFromSubFolders()
    Dim FSO    As Object
    Dim FromPath As String
    Dim ToPath As String
    Dim FileExt As String
    Dim CurrentFile As Object
    Dim dvCell As String
    Dim destin As String
    Dim path2 As String
    dvCell = Workbooks("Scéno.xlsm").Sheets("Scén").Range("B11")
    FromPath = "U:\origin\"                   
    ToPath = "U:\target" & CStr(dvCell) 
    Set FSO = CreateObject("Scripting.FileSystemObject")
    If Not FSO.FolderExists(ToPath) Then
     FSO.CreateFolder ToPath
    End If
    path2 = ToPath & "\"
    Debug.Print
    For Each CurrentFile In FSO.GetFolder(FromPath).Files
            CurrentFile.copy (FSO.BuildPath(path2, CurrentFile.Name))
    Next
    Set FSO = Nothing
    Set CurrentFile = Nothing
   
End Sub
Thanks for any help
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.

Forum statistics

Threads
1,214,795
Messages
6,121,624
Members
449,041
Latest member
Postman24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top