Bom dia,
Mês passado tive um problema no meu notebook e acabou deletando meu programa, pra haver mais segurança no backup queria salvar ele no pendrive, mais não está dando certo, poderiam me ajudar? segue abaixo o código que estou utilizando:
source = "C:\Usuários\vinícius\Documentos\Contas Orçamento Residencial.mdb\"
destine = "E:\BACKUPORCAMENTO\"
Set fso = CreateObject("Scripting.FileSystemObject")
yearstr = Year(Date)
monthstr = Month(Date)
daystr = Day(Date)
If monthstr < 10 Then
monthstr = "0" & monthstr
End If
If daystr < 10 Then
daystr = "0" & daystr
End If
destine = destine & yearstr & monthstr & daystr & ".mdb"
fso.CopyFile source, destine, True
Set fso = Nothing
MsgBox "Backup realizado com sucesso!!!"
End Sub
Mês passado tive um problema no meu notebook e acabou deletando meu programa, pra haver mais segurança no backup queria salvar ele no pendrive, mais não está dando certo, poderiam me ajudar? segue abaixo o código que estou utilizando:
source = "C:\Usuários\vinícius\Documentos\Contas Orçamento Residencial.mdb\"
destine = "E:\BACKUPORCAMENTO\"
Set fso = CreateObject("Scripting.FileSystemObject")
yearstr = Year(Date)
monthstr = Month(Date)
daystr = Day(Date)
If monthstr < 10 Then
monthstr = "0" & monthstr
End If
If daystr < 10 Then
daystr = "0" & daystr
End If
destine = destine & yearstr & monthstr & daystr & ".mdb"
fso.CopyFile source, destine, True
Set fso = Nothing
MsgBox "Backup realizado com sucesso!!!"
End Sub