Forum Discussion
AustinK
4 years agoQrew Commander
If you can get the file downloaded to your computer in one place you may be able to run a scheduled task to move that file to another place by triggering a batch file. Have you looked into that?
You could use Robocopy possibly.
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
I think you could also use a simple copy command as well.
copy Source Destination /y
That would overwrite the file at the destination when copying and could be ran as a scheduled task. This is all assuming you are using windows of course.
You could use Robocopy possibly.
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
I think you could also use a simple copy command as well.
copy Source Destination /y
That would overwrite the file at the destination when copying and could be ran as a scheduled task. This is all assuming you are using windows of course.