This could be a basic macro that you can upgrade as needed. As it is the folder name is static (no subfolders) and will change the right-foot only on the first sheet of each file.
Code:
Option Explicit
Sub UpdateRightFooter()
Dim wkb As Workbook
Dim sht As Worksheet
Dim myPath As String
Dim strFile As String
Dim cnt As Long
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.EnableEvents = False
Application.StatusBar = "Macro at work ... please wait"
myPath = "F:\Prove\Test\" '<- adjust path as needed
strFile = Dir(myPath & "*.xls*") 'for all sort of Excel files
Do While Len(strFile) > 0
Workbooks.Open (myPath & strFile)
Set wkb = ActiveWorkbook
Set sht = wkb.Worksheets(1) 'only for first sheet in file
sht.PageSetup.RightFooter = "New Form Number" '<- adjust string as needed
cnt = cnt + 1
wkb.Close True
strFile = Dir
Loop
Application.ScreenUpdating = True
Application.DisplayAlerts = True
Application.EnableEvents = True
Application.StatusBar = Empty
MsgBox "Done! for " & cnt & " files"
End Sub