Solved Copy to Documents\Backups

sergio vieira

Member
Local time
Today, 21:53
Joined
Apr 22, 2024
Messages
35
Good morning. I solved one problem and was left with another. I have this code to copy the backups to the My Documents\Backups folder. However, I can only send it to c:\Backups. When I try to send it to MyDocuments\Backups, it doesn't work. I would appreciate your help. Thanks

Public Sub Zipabanco()
Dim strDate As String, DefPath As String
Dim App As Object
Dim FName, FileNameZip
Dim strPrefix As String
On Error Resume Next
DefPath = "c:\Backups"
If right(DefPath, 1) <> "\" Then
DefPath = DefPath & "\"
End If

strDate = Format(Now, "dd-mmm-yy_h-mm-ss")
FileNameZip = DefPath & "Backup_" & strDate & ".zip"

'strPrefix = "Server.mdb"
FName = "c:\Patrigest\Server\Server.mdb"
'CurrentProject.Path & "\" & strPrefix & ""
On Error Resume Next
CreateNewZip (FileNameZip)
Set oApp = CreateObject("Shell.Application")
oApp.NameSpace(FileNameZip).CopyHere FName
Call MsgBox("Created Successfully at: " & FileNameZip, vbInformation, "Success")
Set oApp = Nothing
ExitSub
End Sub
 
Pretty sure the full path has to be used. So that would normally be "C:\Users\[USER_NAME]\Documents\Backups"
If you use OneDrive on Win11, then it would be: "C:\Users\[USER_NAME]\OneDrive\Documents\Backups"
 
Unfortunately, dear friend, it didn't work. The return message says yes, but it didn't copy. It only works if you change it to c:\Backups.
Captura de ecrã 2025-03-17 115209.png
 
the code is creating a .Zip (archive) of your db.
if you want to create the .zip to the backup folder:
Code:
Public Sub Zipabanco()
    Dim strDate As String, DefPath As String
    Dim oApp As Object
    Dim FName, FileNameZip
    Dim strPrefix As String
    'On Error Resume Next
    DefPath = "c:\Backups"
    If Right(DefPath, 1) <> "\" Then
    DefPath = DefPath & "\"
    End If
   
    strDate = Format(Now, "dd-mmm-yy_h-mm-ss")
    FileNameZip = "Backup_" & strDate & ".zip"
   
    'strPrefix = "Server.mdb"
    FName = "c:\Patrigest\Server\Server.mdb"

   
    On Error Resume Next
    CreateNewZip (DefPath & FileNameZip)
    Set oApp = CreateObject("Shell.Application")
    oApp.NameSpace(DefPath & FileNameZip).CopyHere FName
    Set oApp = Nothing
   
   
    Call MsgBox("Created Successfully at: " & DefPath & FileNameZip, vbInformation, "Success")
End Sub
 
Thank you, dear friend. What I intend to do is not to send the Backups to c:\Backups, but to c:\Documents\Backups. Thank you
 
make sure that the folder Backups is on your Documents folder.
the code will not check for it.
modify the code:
Code:
Public Sub Zipabanco()
    Dim strDate As String, DefPath As String
    Dim oApp As Object
    Dim FName, FileNameZip
    Dim strPrefix As String
    'On Error Resume Next
    DefPath = Environ$("Userprofile") & "\documents\Backups\"

    strDate = Format(Now, "dd-mmm-yy_h-mm-ss")
    FileNameZip = "Backup_" & strDate & ".zip"
   
    'strPrefix = "Server.mdb"
    FName = "c:\Patrigest\Server\Server.mdb"

   
    On Error Resume Next
    CreateNewZip (DefPath & FileNameZip)
    Set oApp = CreateObject("Shell.Application")
    oApp.NameSpace(DefPath & FileNameZip).CopyHere FName
    Set oApp = Nothing
   
   
    Call MsgBox("Created Successfully at: " & DefPath & FileNameZip, vbInformation, "Success")
End Sub
 
Thank you very much, friend. It worked perfectly. Very grateful. have a good day
 
Unfortunately, dear friend, it didn't work. The return message says yes, but it didn't copy. It only works if you change it to c:\Backups.
If you want someone to help you with code, you need to post YOUR code. Just saying "it" doesn't work doesn't help anyone if they can't see what "it" is.

Sometimes we can read minds (we've created all of these errors ourselves;) so sometimes it is easy) as arnelgp just did.
 

Users who are viewing this thread

Back
Top Bottom