I'm using svn in a script (Windows scripting .cmd file).
Currently it checks out all files to a folder, then iterates that folder adding all the files to a master file as part of a build process. Something like:
svn checkout --username %username% %SVNURL% %workingfolder%
FOR %%i IN (%workingfolder%\*.*) DO TYPE %%i >> %DESTFILE%
What I would like to do for builds after the inital build is produce a "change" file, that only has the files included which have changed since the last build.
I can use the svn update command instead of checkout, and this gives me a list of files being updated. svn update Reference (svnbook.red-bean.com)
What I would like to do is iterate this list of results from the svn update, find these files within the working folder and copy them to a change file.