ehero
Thành viên mới
- Tham gia
- 6/1/14
- Bài viết
- 9
- Được thích
- 0
Sub deleteFile()
Dim Str$
Str = sheet1.cells(Activecell.Row, Activecell.Column +1)
Set fso = CreateObject("Scripting.FileSystemObject")
If fso.FileExists(Str) then
fso.DeleteFile Str
Msgbox "da xoa"
Else
Msgbox "File khong ton tai"
End if
End sub
Em cám ơn bác nha, hoạt động tốt rồi ạĐầu tiên bạn phải kiểm tra file tồn tại không đã => sau đó mới tiến hành xóa file
Rich (BB code):Sub deleteFile() Dim Str$ Str = sheet1.cells(Activecell.Row, Activecell.Column +1) Set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(Str) then fso.DeleteFile Str Msgbox "da xoa" Else Msgbox "File khong ton tai" End if End sub