본문 바로가기
OraclE

archive file 자동 삭제 스크립트-window

by 타마마임팩트_쫀 2008. 10. 7.

Option Explicit

Const strRootPath = "C:\Temp\"
Const nDays = 10 '                                   초과일수

Dim oFSO
Set oFSO = CreateObject("Scripting.FileSystemObject")

Dim oFolder, oSubFolder
Set oFolder = oFSO.GetFolder(strRootPath)

Dim oFile

  For Each oFile In oFolder.Files 
  If Int(Now() - oFile.DateLastAccessed) >= nDays Then 
   oFile.Delete
  End If
 
Next

 

------------------------------------------------

확장자 vbs로 저장

oFile.DateLastAccessed => oFile.DateLastModified 


'OraclE' 카테고리의 다른 글

Transportable Tablespaces  (0) 2008.10.17
sqlnet ip 제한  (0) 2008.10.07
data file size 줄이기  (0) 2008.10.07
Oracle Data Pump(Oracle 10g)  (0) 2008.10.01
ASSM에서 Freelist 관리  (0) 2008.09.25