Hi,
You will have to use an ActiveX programming in a DTS that uses File system object:
Dim objFSO, objFile, objFolder
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder("D:\Data\LOG\SendLog\")
…
For Each objFile in objFolder.Files
…
objFile.move "D:\Data\LOG\SendLog\Test\"
Jean-Paul
Montreal
To send me E-Mail, remove “USELESSCODE”.
jp@USELESSCODEsolutionsvba.com