懶人用法kill :
語法很簡單就是 KILL +檔案路徑+完整檔案名稱
但缺點是有時候會有一點BUG,如字串長度限制
非懶人法(Scripting.FileSystemObject):
Set fs = CreateObject("Scripting.FileSystemObject")
With New FileSystemObject '宣導一個新的物件
'FILEPath 要刪除的路徑+完整檔案名稱
If fs.FileExists(FILEPath ) Then
fs.DeleteFile FILEPath
End If
End With
沒有留言:
張貼留言