Hi,
I simplified it a bit. It's working fine from my end.
Option Explicit
Sub RenameThenCopyFilesInFolder()
Dim myFolder$
' Pick folder
myFolder = "C:\Temp\Old Folder\" '<<< Change here
' Loop through all subfolders
ListFilesInFolder myFolder, True
End Sub
Sub ListFilesInFolder(SourceFolderName As String, IncludeSubfolders As Boolean)
Dim Oldfile$, NewFile$, NewFolder$, fso As Object, SourceFolder, FileItem, SubFolder
Set fso = CreateObject("Scripting.FileSystemObject")
Set SourceFolder = fso.GetFolder(SourceFolderName)
For Each FileItem In SourceFolder.Files
If FileItem.Name Like "*" & ".pdf" Then
With fso
Oldfile = SourceFolder.Path & "\" & FileItem.Name
NewFile = SourceFolder.Path & "\" & .GetBaseName(SourceFolder) & ".pdf"
NewFolder = "D:\Renamed\" '<<< Change here
If Not .FolderExists(NewFolder) then .CreateFolder(NewFolder)
' Upadate the file names
.MoveFile Oldfile, NewFile
' Copy pdfs to new folder
.CopyFile NewFile, NewFolder & .GetBaseName(NewFile) & ".pdf", False ' False = no not overwrite files, True= overwrite files without warning
End With
End If
Next
If IncludeSubfolders Then
For Each SubFolder In SourceFolder.SubFolders
ListFilesInFolder SubFolder.Path, False
Next SubFolder
End If
Set FileItem = Nothing
Set SourceFolder = Nothing
Set fso = Nothing
End Sub
Let me know if it's still causing you any problems.
abousetta
Bookmarks