Hi guys, sorry if this isn't the appropriate forum for this.
As I cannot record + watch the recorded channel live directly to the FlexRaid drive, I figured I'd record everything to a spare 320GB WD Blue drive I had and then transfer the recordings to the flexraid nightly at like 4:00 AM
(my same issue http://forum.flexraid.com/index.php/topic,969.msg8396.html#msg8396)
Is a scheduled batch file the best way to do this?
I have my DVR box setup as follows:
OS: Win 7 x64
3 x 3TB HDD in FlexRaid.......................(E:\)
1 x 320GB HDD for temp recordings......(H:\)
1 x 60GB SSD for OS............................(C:\)
I figured I'd have the batch file copy the files to E:\ and then delete the recordings from H:\ ?
What if there's a recording occurring at 4:00 AM? Will the batch file still copy the recording but fail to delete it since it's "in use" ?
Here's what I came up with:
Is this the best way do to this?
Thanks guys.
Edited by pratiken - 1/11/13 at 9:51pm
As I cannot record + watch the recorded channel live directly to the FlexRaid drive, I figured I'd record everything to a spare 320GB WD Blue drive I had and then transfer the recordings to the flexraid nightly at like 4:00 AM
(my same issue http://forum.flexraid.com/index.php/topic,969.msg8396.html#msg8396)
Is a scheduled batch file the best way to do this?
I have my DVR box setup as follows:
OS: Win 7 x64
3 x 3TB HDD in FlexRaid.......................(E:\)
1 x 320GB HDD for temp recordings......(H:\)
1 x 60GB SSD for OS............................(C:\)
I figured I'd have the batch file copy the files to E:\ and then delete the recordings from H:\ ?
What if there's a recording occurring at 4:00 AM? Will the batch file still copy the recording but fail to delete it since it's "in use" ?
Here's what I came up with:
Code:
robocopy "H:\Recorded TV" "E:\Recorded TV" /E /COPYALL /MOVE /ETA /TEE /LOG+:migration_log.txt
pause
Code:
/E :: copy subdirectories, including Empty ones.
/COPYALL :: COPY ALL file info (equivalent to /COPY:DATSOU).
/MOVE :: MOVE files AND dirs (delete from source after copying).
/ETA :: show Estimated Time of Arrival of copied files
/TEE :: output to console window, as well as the log file.
Is this the best way do to this?
Thanks guys.
Edited by pratiken - 1/11/13 at 9:51pm





