Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > VB Script

Vista - Need Help for archive logs

Reply
 
Old 06-03-2008   #1 (permalink)
RAVIRAJ


 
 

Need Help for archive logs


i have folder with logs , i want to archive 10 day's from current date using
compress n move to d:\ with curent date folder.



My System SpecsSystem Spec
Old 06-07-2008   #2 (permalink)
hb21l6


 
 

Re: Need Help for archive logs


"RAVIRAJ" <RAVIRAJ@xxxxxx> wrote in message
news:A5F43AEE-AF4A-42A3-B5F6-782137D438EF@xxxxxx
Quote:

>
> i have folder with logs , i want to archive 10 day's from current date
> using
> compress n move to d:\ with curent date folder.
>
>
>
Something like this should do it, you may need to tweak it slightly

Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set fl = objFSO.GetFolder("C:\MyfolderPath")
For Each f In fl.Files
If f.DateLastModified > date()-10 Then

' then we need to move the files.
objFSO.MoveFile f.name , "D:\Archive\"

End If
Next

set fl = nothing
set objFSO = nothing

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Recoving 7 Zip Archive - Cannot open file 'xampp.7z' as archive Vista file management
Archive Vista mail
archive Vista mail
subject windows Vista Event Logs access through WMI ( Applications and Services Logs) Vista networking & sharing
windows Vista Event Logs access through WMI ( Applications and Services Logs) Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46