i have this link but i am trying to figure out how to download the entire directory and subdirectories at once ..
http://dennisburton.googlecode.com/svn/trunk/PostSamples/ModelBinderPosts/
i have this link but i am trying to figure out how to download the entire directory and subdirectories at once ..
http://dennisburton.googlecode.com/svn/trunk/PostSamples/ModelBinderPosts/
Performing a subversion checkout will download the entire directory tree.
Use some subversion client like TortoiseSVN, or use svn support in some IDE like NetBeans.
As repository URL choose http://dennisburton.googlecode.com/svn/trunk/ and simple choose the directory you want to checkout (download)
Run svn export http://dennisburton.googlecode.com/svn/trunk/PostSamples/ModelBinderPosts/
This will not create a working copy, but just download the latest version. Checkout will create a working copy, which is larger on disk. You can use the working copy to commit changes, and update more efficiently. Exporting doesn't allow you to commit or update (you'll need to export the whole thing again when one small changes occurs)