Hi
I am new to scripting and was wondering if anyone could help me with moving
some files based on there data of creation.
What I am after is the following:
Move all file in d:\folder1\*.* between 01/01/05 - 31/01/05 to
d:\folder2\012005.
I have figured how to move files by the following:
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.MoveFile "D:\Script_test\Folder1\*.*" , "D:\Script_test\Folder2\"
But dont know how todo the data thing.
Any help would be great.
Thanks
James