I've used a coding practice dozens of times.
Using the Windows Scripting RunTime FileSystemObject, it iterates through each file in a folder, and "does something" to each file.
Code example:
Public Function RestoreOriginalPicNames(pFolderPath As String, pCharsToChop As Byte) As Boolean
Dim objFSO As New FileSystemObject
Dim objFolder As Folder
Dim objFile As File
Dim FileName As String
Dim FileNameNoExt As String
Dim FileNewName As String
Dim FileExt As String
Set objFolder = objFSO.GetFolder(pFolderPath)
For Each objFile In objFolder.Files
FileName = objFile.Name
FileExt = GetExtFromFileName(FileName)
FileNameNoExt = Left$(FileName, Len(FileName) - Len(FileExt) - 1)
If FileExt = "JPG" Then
If Len(FileName) > pCharsToChop Then
FileNewName = Right$(FileName, Len(FileName) - pCharsToChop)
objFile.Name = FileNewName
Debug.Print FileNewName
End If
End If
Next objFile
RestoreOriginalPicNames = True
End Function
For the first time, the collection of files seems to be refreshing itself from the file-system half-way through the loop, so that two files (possibly due to an accidental feature of their name/renamed name) are processed twice.
I thought that, when the compiler hits the For Each File In [Folder], it internally populates a static array from the file-system. In other words, if the code is already in the loop, any subsequent changes to the population of the folder would be ignored.
In this instance two files get renamed, then somehow get picked up again by the For Each so they get processed twice.
The solution seems to be to explicitly populate an array of file names, and then iterate through that array to process the files (leaving the file-system unaddressed after the initial array population).
I'm worried that this code practice isn't bomb-proof, because I use it all over the place.
Try to exclude this line:
and watch the
Debug.Print
output. If that list is as expected, I would use the array method, you mention.