Jump to content

Delete Old Files via VB script.


NIM

Recommended Posts

Dim oFSO, oFolder, oFiles, oFile
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oFolder = oFSO.GetFolder("C:\TEST")
Set oFiles = oFolder.Files
for each oFile in oFiles
if oFile.DateLastModified > DateAdd("d", -14, Now()) then
if MsgBox("Delete " & oFile.Path, vbYesNo) = vbYes then
' Omit 'True' in the next line if ReadOnly should be respected
oFile.Delete True
end if
end if
next

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...