Em có đoạn code để copy 1 file excel từ ổ D sang ổ E, em muốn sửa để code này vẫn copy được ngay cả khi file nguồn đang mở thì cần sửa như thế nào ?
Nhờ các mọi người chỉ giúp,
Sub CopyFile()
Dim sourcePath As String, destPath As String
Dim sourceFile As String, destFile As String
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
sourcePath = "D:\"
sourceFile = "file_nguon.xlsx"
destPath = "E:\"
destFile = "file_copy"
On Error Resume Next
FileCopy sourcePath & sourceFile, destPath & destFile & ".xlsx"
On Error GoTo 0
End Sub
Nhờ các mọi người chỉ giúp,
Sub CopyFile()
Dim sourcePath As String, destPath As String
Dim sourceFile As String, destFile As String
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
sourcePath = "D:\"
sourceFile = "file_nguon.xlsx"
destPath = "E:\"
destFile = "file_copy"
On Error Resume Next
FileCopy sourcePath & sourceFile, destPath & destFile & ".xlsx"
On Error GoTo 0
End Sub