Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Move Files Based on Their File ExtensionContent of Move Files Based on Their File Extension.vbsMD5 Hash: B30377A04C2F92F09A9D594D373BE69C |
||
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colFiles = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='C:\Payroll'} Where " _ & "ResultClass = CIM_DataFile") For Each objFile in colFiles If objFile.Extension = "log" Then strCopy = "D:\Operation Logs\" & objFile.FileName _ & "." & objFile.Extension objFile.Copy(strCopy) objFile.Delete End If Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |