To revert a particular folder in SVN to its previous state I currently use the following:
svn rm folder svn commit -m \'removed folder to revert to previous vers
you could also use
svn revert folder/*
which will revert all the file under folder
folder