(The files are downloaded and processed into C:\TV which I want, I just want them to be copied to T:\ as well. Would be 5 seconds to do this on the Mac or FreeBSD machines, but have no idea where to even begin on Windows.)
[edit]
Oh, I have the SDK for UNIX-Applications installed in Win7, which I think has at least C Shell buried somewhere, so could I use that for post processing?
[edit2]
Inc ase anyone else reads this, this APPEARS to be working, but I've not tested it much yet.
Code: Select all
@echo off
set myFile=%1
set myDest=T:\
copy %myFile% %myDest%
OK, it works, but it copies the file to t:\ instead of the folder with the file in it. that is to say is copies "TV show.s01e01.avi" instead of "TV Show\TV show.s01e01.avi"
If anyone is reading this and can enlighten me? Or do I just install rsync on the windows machine? (I am trying to avoid installing anything at all extra on the windows machine as it is exclusively a video source for the projector)