Ciao,
ho lo stesso problema, “Error …53, impossibile trovare il file”
Private Sub BACKUP_DB_Click()
Set filesys = CreateObject("Scripting.FileSystemObject")
' path di origine del DB
Dim pdb As String
pdb = "D:\ARMURA"
oldpath = pdb
archive = "db.accdb" ' database
dtsei = Right(Year(Now), 4) & _
Right("0" & Month(Now), 2) & _
Right("0" & Day(Now), 2)
dtsei = Left(dtsei, 8) & "\"
' path destinazione DOVE CREARE UNA CARTELLA Giornaliera nella cartella BACKUP
newpath = oldpath & "\Backup\"
'*** Copia giornaliera ***
If Not (filesys.FolderExists(newpath)) Then Set newfolder = filesys.createfolder(newpath)
newpath = newpath & dtsei
If Not (filesys.FolderExists(newpath)) Then Set newfolder = filesys.createfolder(newpath)
filesys.CopyFile oldpath & archive, newpath & dtsei & "db.accdb", True
' esempio filesys.CopyFile oldpath & archive, newpath & dtsei & "GESTIONE RETE VENDITA-2022.accdb", True
End Sub
Grazie per l'aiuto!!!