定时删除历史文件的script

    Dim fso, f, f1, fc, s
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set f = fso.GetFolder("h:\11")  '指定要删除文件所在的目录
    Set fc = f.Files
    For Each f1 in fc    '枚举目录中的文件
        s = f1.datelastmodified 'datecreated  '获得文件的创建时间或最后修改时间属性
        t = datediff("d",s,Now)    '比较时间属性跟当前时间的相差天数
     If t > 1 Then    '如果相差天数大于多少天时
          f1.delete  'kill掉它
     'wscript.echo t
     
     End If
     'wscript.echo t
    Next

你可能感兴趣的:(职场,script,休闲,历史文件)