The UK Home Automation Archive

Archive Home
Group Home
Search Archive


Advanced Search

The UKHA-ARCHIVE IS CEASING OPERATIONS 31 DEC 2024


[Message Prev][Message Next][Thread Prev][Thread Next][Message Index][Thread Index]

Re: Movie server / large scale file copy


  • Subject: Re: Movie server / large scale file copy
  • From: "dreamgreenhouse_com" <yahoo@xxxxxxxxxxxxxxxxxxx>
  • Date: Fri, 06 Nov 2009 19:57:21 -0000


--- In ukha_d@xxxxxxx, "keyvan2r" <k1@...> wrote:
>
> Hi all
>
> I have built a large capacity media server running WHS. I am now
<snipped>
> Any suggestions would be most appreciated.

I use xxcopy (http://www.xxcopy.com) for all stuff like
this and automated backup scripts. It does changes only, so will pick up
half way through. Just write a batch file with contents along the lines of:

@echo off
REM Synchronisation of Pendrive (E:\) to laptop

:start
if exist "destination_folder" goto sync
echo Error - Drive not mapped or present
goto end

:sync
xxcopy "source_folder" "destination_folder" /DA /H0 /K0
/S /Q1 /Q2 /YY /ZY /Po0
REM /DA  Copies newer files and brand new files.
REM /H0  Excludes hidden and/or system files (default).
REM /K0  Keeps the source attributes except read-only (default).
REM /Po0  Suppresses warning on file-overwrite (Legacy /Y).
REM /Q1  Does not display files which are skipped.
REM /Q2  Does not display directories which are excluded.
REM /S  Copies directories and subdirectories except empty ones.
REM /YY  Suppresses ALL prompts unconditionally (good in a batch script).
REM /ZY - remove files in dst not in src

:end
echo on




------------------------------------


UKHA_D Main Index | UKHA_D Thread Index | UKHA_D Home | Archives Home

Comments to the Webmaster are always welcomed, please use this contact form . Note that as this site is a mailing list archive, the Webmaster has no control over the contents of the messages. Comments about message content should be directed to the relevant mailing list.