Create new folder with current date and move specif files to it

SantanaKRE8s

Board Regular
Joined
Jul 11, 2023
Messages
130
Office Version
  1. 365
Platform
  1. Windows
Can someone please help with this VBA, I want to create a new folder with the current date and then move specific files to the new folder.

Sub FSOMoveAllFiles()
Dim FSO As New FileSystemObject
Dim FromPath As String
Dim ToPath As String
Dim FileInFromFolder As Object

FromPath = "H:\Desktop"
MkDir "G:\Branches\VS-SpaceX\Benjamin\FABRINET_THF002\CANCELED POs\FBN CXL REQ" & " " & Format(Now(), "M-DD-YYYY") & ""
ToPath = "G:\Branches\VS-SpaceX\Benjamin\FABRINET_THF002\CANCELED POs\FBN CXL REQ" & " " & Format(Now(), "M-DD-YYYY") & ""

Set FSO = CreateObject("Scripting.FileSystemObject")

For Each FileInFromFolder In FSO.GetFolder(FromPath).Files
FileInFromFolder.Move ToPath
Next FileInFromFolder

End Sub
 

Attachments

  • 2024-04-29 11_51_18-Microsoft Visual Basic for Applications - CXL REQUEST_FBN.xlsm [break] - [...png
    2024-04-29 11_51_18-Microsoft Visual Basic for Applications - CXL REQUEST_FBN.xlsm [break] - [...png
    19.7 KB · Views: 11
Hmm. Probably a bad idea then to name your Subroutine "FSOMoveAllFiles", don't you think? :)
Try this
VBA Code:
Sub FSOMoveAllFiles()
    Dim FSO As New FileSystemObject                   'early binding of FSO oject
    Dim FromPath As String, ToPath As String, FileInFromFolder As File, DateStr As String, FldrName As String, BasePath As String
    Dim MCnt As Long
   
    DateStr = Format(Now(), "M-DD-YYYY")
    FldrName = "FBN CXL REQ" & DateStr
    BasePath = "G:\Branches\VS-SpaceX\Benjamin\FABRINET_THF002\CANCELED POs\"
    FromPath = "H:\Desktop"
   
    If Not FSO.FolderExists(FromPath) Then
        Debug.Print "Folder '" & FromPath & "' does not exist"
        MsgBox "Folder '" & FromPath & "' does not exist", vbCritical
        Exit Sub
    End If
   
    If Not FSO.FolderExists(BasePath) Then
        Debug.Print "Folder '" & BasePath & "' does not exist"
        MsgBox "Folder '" & BasePath & "' does not exist", vbCritical
        Exit Sub
    End If
   
    ToPath = BasePath & FldrName
   
    If Not FSO.FolderExists(ToPath) Then
        FSO.CreateFolder ToPath
    End If
   
    If Not FSO.FolderExists(ToPath) Then
        Debug.Print "Folder '" & ToPath & "' does not exist"    'optional
        MsgBox "Folder '" & ToPath & "' does not exist" & vbCr & vbCr & "Folder creation unsuccessful", vbCritical    'optional
        Exit Sub
    End If
   
    With FSO.GetFolder(FromPath)
        For Each FileInFromFolder In .Files
            Debug.Print FileInFromFolder.Name
            Select Case Trim(Left(FileInFromFolder.Name, 12))
                Case "CANCEL.xlsx", "THF002.xlsx", "FBN CXL REQ"
                    FileInFromFolder.Move ToPath
                    MCnt = MCnt + 1
            End Select
        Next FileInFromFolder
    End With
   
    MsgBox MCnt & " files moved.", vbInformation
End Sub
Its stops here on the second time around. So it creates the new folder with name and current date, it goes to through all the way to "Next FileInFromFolder" and then goes back to "Debug.Print FileInFromFolder.Name" and then down to "FileInFromFolder.Move ToPath" and this is where it stops. Run time error '58' File already exist.



1714768752620.png
 

Attachments

  • 1714769619215.png
    1714769619215.png
    2.1 KB · Views: 2
Upvote 0

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Its stops here on the second time around

That is unsurprising. You chose to use the statement FileInFromFolder.Move ToPath in your original code. The file object .move method works only when the target file does not exist. It can't overwrite and will produce an error if the file already exists. If you want it to behave differently then changes will be needed.
 
Upvote 0
That is unsurprising. You chose to use the statement FileInFromFolder.Move ToPath in your original code. The file object .move method works only when the target file does not exist. It can't overwrite and will produce an error if the file already exists. If you want it to behave differently then changes will be needed.
I dont mind making changes necessary to make this work.
This is my process -

I have a code in another module that gets data from these two workbooks CANCEL.XLSX and THF002.XLSX to create the FBN CXL REQ (With Current Date).XLSX
and a module to reset the master file.
and I want a code to move all files used into a folder with the name "FBN CXL REQ and current date ", This is the one I am having trouble with. Creating the folder and moving the files. Don mind making changes to make it work. thank you for your help and patience.
 
Upvote 0
Try using
VBA Code:
FileInFromFolder.Copy ToPath, True
instead of
VBA Code:
FileInFromFolder.Move ToPath
 
Upvote 0
Try this instead.
VBA Code:
    With FSO.GetFolder(FromPath)
        For Each FileInFromFolder In .Files
            Select Case Trim(Left(FileInFromFolder.Name, 12))
                Case "CANCEL.xlsx", "THF002.xlsx", "FBN CXL REQ"
                    If FSO.FileExists(ToPath) Then
                        Debug.Print FileInFromFolder.Name
                        Select Case MsgBox("File '" & FileInFromFolder.Name & "' already exists in the destination folder. " & vbCrLf & vbCrLf _
                                & "Do you want to overwrite it?", vbYesNoCancel Or vbQuestion, Application.Name)
                            Case vbYes
                                Kill ToPath
                                FileInFromFolder.Move ToPath
                                MCnt = MCnt + 1
                            Case vbCancel
                                Exit Sub
                        End Select
                    Else
                        FileInFromFolder.Move ToPath
                        MCnt = MCnt + 1
                    End If
            End Select
        Next FileInFromFolder
    End With
 
Upvote 0
Try this instead.
VBA Code:
    With FSO.GetFolder(FromPath)
        For Each FileInFromFolder In .Files
            Select Case Trim(Left(FileInFromFolder.Name, 12))
                Case "CANCEL.xlsx", "THF002.xlsx", "FBN CXL REQ"
                    If FSO.FileExists(ToPath) Then
                        Debug.Print FileInFromFolder.Name
                        Select Case MsgBox("File '" & FileInFromFolder.Name & "' already exists in the destination folder. " & vbCrLf & vbCrLf _
                                & "Do you want to overwrite it?", vbYesNoCancel Or vbQuestion, Application.Name)
                            Case vbYes
                                Kill ToPath
                                FileInFromFolder.Move ToPath
                                MCnt = MCnt + 1
                            Case vbCancel
                                Exit Sub
                        End Select
                    Else
                        FileInFromFolder.Move ToPath
                        MCnt = MCnt + 1
                    End If
            End Select
        Next FileInFromFolder
    End With

Made the changes and im getting " Run-time error '58': File already exist.

1715020300290.png
 
Upvote 0
Sorry, that was my typo.

VBA Code:
 If FSO.FileExists(ToPath) Then
should be
VBA Code:
If FSO.FileExists(ToPath & "\" & FileInFromFolder.Name) Then
 
Upvote 0
Sorry, that was my typo.

VBA Code:
 If FSO.FileExists(ToPath) Then
should be
VBA Code:
If FSO.FileExists(ToPath & "\" & FileInFromFolder.Name) Then
For some reason it keeps stopping at the same place " FileInFromFolder.Move ToPath "


Sub FSOMoveAllFiles()
Dim FSO As New FileSystemObject 'early binding of FSO oject
Dim FromPath As String, ToPath As String, FileInFromFolder As File, DateStr As String, FldrName As String, BasePath As String
Dim MCnt As Long

DateStr = Format(Now(), "M-DD-YYYY")
FldrName = "FBN CXL REQ " & DateStr
BasePath = "G:\Branches\VS-SpaceX\Benjamin\FABRINET_THF002\CANCELED POs\"
FromPath = "H:\Desktop"

If Not FSO.FolderExists(FromPath) Then
Debug.Print "Folder '" & FromPath & "' does not exist"
MsgBox "Folder '" & FromPath & "' does not exist", vbCritical
Exit Sub
End If

If Not FSO.FolderExists(BasePath) Then
Debug.Print "Folder '" & BasePath & "' does not exist"
MsgBox "Folder '" & BasePath & "' does not exist", vbCritical
Exit Sub
End If

ToPath = BasePath & FldrName

If Not FSO.FolderExists(ToPath) Then
FSO.CreateFolder ToPath
End If

If Not FSO.FolderExists(ToPath) Then
Debug.Print "Folder '" & ToPath & "' does not exist" 'optional
MsgBox "Folder '" & ToPath & "' does not exist" & vbCr & vbCr & "Folder creation unsuccessful", vbCritical 'optional
Exit Sub
End If

With FSO.GetFolder(FromPath)
For Each FileInFromFolder In .Files
Select Case Trim(Left(FileInFromFolder.Name, 12))
Case "CANCEL.xlsx", "THF002.xlsx", "FBN CXL REQ"
If FSO.FileExists(ToPath & "\" & FileInFromFolder.Name) Then
Debug.Print FileInFromFolder.Name
Select Case MsgBox("File '" & FileInFromFolder.Name & "' already exists in the destination folder. " & vbCrLf & vbCrLf _
& "Do you want to overwrite it?", vbYesNoCancel Or vbQuestion, Application.Name)
Case vbYes
Kill ToPath
FileInFromFolder.Move ToPath
MCnt = MCnt + 1
Case vbCancel
Exit Sub
End Select
Else
FileInFromFolder.Move ToPath
MCnt = MCnt + 1
End If
End Select
Next FileInFromFolder
End With
1715294506647.png

MsgBox MCnt & " files moved.", vbInformation
End Sub
 
Upvote 0
Can you post your entire code with all modifications for Sub FSOMoveAllFiles() ?

When you do, please try to use code tags like I did above when posting code. It makes your code easier to read and copy.
 
Upvote 0

Forum statistics

Threads
1,216,074
Messages
6,128,649
Members
449,462
Latest member
Chislobog

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