Please change the following lines:
strFilePath = "F:\DOWNLOADS\Temp"
strDestination = "F:\MOVIES"
strTorrent = "F:\DOWNLOADS"
objFSO.MoveFile objFileCopy.Path, strDestination
with:
strFilePath = UCase("F:\DOWNLOADS\Temp\"
strDestination = UCase("F:\MOVIES\")
strTorrent = UCase("F:\DOWNLOADS\")
objFSO.MoveFile UCase(objFileCopy.Path), UCase(strDestination)
Let me know the results!
Main Topics
Browse All Topics





by: pilozitePosted on 2009-08-09 at 01:21:32ID: 25053256
hello ,
you could do it with PowerShell as below, this is done with one line of code.
Select allOpen in new window