Me encanta el comando PowerShell de Jeff, pero para una solución vbs alternativa para máquinas Windows sin PowerShell, puede intentar lo siguiente.
Guardar como <filename>.vbs
y ejecutar:
<filename>.vbs <target_dir> <NoDaysSinceModified> [Action]
El tercer parámetro, [Action]
es opcional. Sin ella, los archivos anteriores <NoDaysSinceModified>
serán listados. Con esto configurado D
, eliminará archivos anteriores a<NoDaysSinceModified>
Ejemplo
PurgeOldFiles.vbs "c:\Log Files" 8
será una lista de todos los archivos de c:\Log Files
más de 8 días de edad
PurgeOldFiles.vbs "c:\Log Files" 8 D
será eliminar todos los archivos de c:\Log Files
más de 8 días de edad
nota: esta es una versión modificada del script de Haidong Ji en SQLServerCentral.com
Option Explicit
on error resume next
Dim oFSO
Dim sDirectoryPath
Dim oFolder
Dim oFileCollection
Dim oFile
Dim iDaysOld
Dim fAction
sDirectoryPath = WScript.Arguments.Item(0)
iDaysOld = WScript.Arguments.Item(1)
fAction = WScript.Arguments.Item(2)
Set oFSO = CreateObject("Scripting.FileSystemObject")
set oFolder = oFSO.GetFolder(sDirectoryPath)
set oFileCollection = oFolder.Files
If UCase(fAction) = "D" Then
'Walk through each file in this folder collection.
'If it is older than iDaysOld, then delete it.
For each oFile in oFileCollection
If oFile.DateLastModified < (Date() - iDaysOld) Then
oFile.Delete(True)
End If
Next
else
'Displays Each file in the dir older than iDaysOld
For each oFile in oFileCollection
If oFile.DateLastModified < (Date() - iDaysOld) Then
Wscript.Echo oFile.Name & " " & oFile.DateLastModified
End If
Next
End If
'Clean up
Set oFSO = Nothing
Set oFolder = Nothing
Set oFileCollection = Nothing
Set oFile = Nothing
Set fAction = Nothing