Changing file names causes an error

superfb

Active Member
Joined
Oct 5, 2011
Messages
251
Office Version
  1. 2007
Platform
  1. Windows
Hi

i have a macro that changes the names of files in a directory i chose. But i have noticed if i want to name two files the same it causes an error........is there something i can incorporate in the coding to highlight this or to create a second file with the same name?

Code:
Sub RenameFiles()


Dim myPath As String
myPath = Range("G2")


r = 2
Do Until IsEmpty(Cells(r, 1)) And IsEmpty(Cells(r, 2))
    Name myPath & Cells(r, 1).Value As myPath & Cells(r, 2).Value
    r = r + 1
Loop




End Sub
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
first check if file exists:
Code:
[COLOR=#101094][FONT=inherit]If[/FONT][/COLOR][COLOR=#303336][FONT=inherit] Dir[/FONT][/COLOR][COLOR=#303336][FONT=inherit](myPath & Cells(r, 2).Value[/FONT][/COLOR][COLOR=#303336][FONT=inherit])[/FONT][/COLOR][COLOR=#303336][FONT=inherit] [/FONT][/COLOR][COLOR=#303336][FONT=inherit]=[/FONT][/COLOR][COLOR=#303336][FONT=inherit] [/FONT][/COLOR][COLOR=#7D2727][FONT=inherit]""[/FONT][/COLOR][COLOR=#303336][FONT=inherit] [/FONT][/COLOR][COLOR=#101094][FONT=inherit]Then
[/FONT][/COLOR]    Name myPath & Cells(r, 1).Value As myPath & Cells(r, 2).Value
    r = r + 1
ELSE
    '....think of some other filename
end if
 
Upvote 0
Hi thank you for the reply- ideally if there is a duplicate folder name like

20070810
20070810

i would like the second folder to be named as 20070810 - 2
 
Last edited:
Upvote 0
Old File NameChange File name
jak.pdfCRWS-20180608.PDF
jo.pdfDWI-20100724.PDF
ko.pdfDWI-20130304.PDF
lak.pdfFacbook-200130303.pdf
lo.pdfTransferOver-20090302.pdf
man.pdfTransferOver-20090622.pdf
mo.pdfTransferOver-20090302.pdf
pop.pdfTransferOver-20090622.pdf

<tbody>
</tbody>

The VBA crashes on mo.pdf because the file name i want to change already exists and as a consequence the last two file names do not change

as a consequence if re run the macro it will not run because the files that have been changed before crashing the vba says name already exists
 
Last edited:
Upvote 0
Try something like this:

Code:
Sub RenameFiles()
    Dim myPath As String: myPath = Range("G2")
    Dim r As Long: r = 2
    Dim i As Long
    Dim fn As String, ext As String, fn2 As String
    
    Do Until IsEmpty(Cells(r, 1)) And IsEmpty(Cells(r, 2))
        fn = Cells(r, 2).Value
        If Dir(myPath & fn) <> "" Then
            ext = Right(fn, InStrRev(fn, ".") - 1)
            fn2 = myPath & Left(fn, Len(fn) - InStrRev(fn, "."))
            i = 1
            Do Until Dir(fn2 & " - " & i & "." & ext) = ""
                i = i + 1
            Loop
            fn = fn2 & " - " & i & "." & ext
        End If
        Name myPath & Cells(r, 1).Value As fn
        r = r + 1
    Loop


End Sub
 
Upvote 0
Thank you for this, would this work to change the file names in a sub folders too?

Code:
   Name myPath & Cells(r, 1).Value As fn

i get a runtime error 53 "File not found"...

also run time error 75 path error
 
Last edited:
Upvote 0
when the error pops up select debug and check the values of:
myPath
myPath & Cells(r, 1).Value
fn

see if something is wrong or out of place.
I would guess you are missing a backslash at the end of mypath:
Code:
[COLOR=#333333]myPath = Range("G2") & "\"[/COLOR]
but I cannot be sure from a distance. :) This is something you have to sort out.
 
Upvote 0
in the cell g2 i have the file directory

C:\Users\User\Desktop\Fb\

<tbody>
</tbody>


so the "" is not the issue, im quite confused.....
 
Upvote 0
Code:
Name myPath & Cells(r, 1).Value As myPath & fn

I just needed to put MyPath and is working now.......

could you kindly explain what each step of the code does? this would be a really useful for me as i can gather a deeper understanding of the code

The other issue i have noticed is that, the macro crashes.......as oppose to just changing the file name i want to for eg

6 names have changed but then the macro crashes

as a result i only require to change one file.........

can the Code incorporate this?
 
Last edited:
Upvote 0
I think it would be good if the code could also change the names of the files in sub folders
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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