Question

I'm looking around this Google code link from last an hour, can't find a way to download folders of sample code. When I click on any one of the Folder, it will take me inside it, and show all files, after click on any of the file, it will show the content of the file! Instead open it there, I want to download it. How can I download those samples folder? I've Google it and as people talking about SVN and commands to pass with command-line tool, I don't have any knowledge about it, is there any easiest way to get this? Thanks.

Was it helpful?

Solution

If you use wget you can use the following command

wget -m -np http://gdata-objectivec-client.googlecode.com/svn/trunk/

See the following questions for more info

Download an SVN repository?

https://stackoverflow.com/questions/1192310/an-online-subversion-client

How do I download code using SVN/Tortoise from Google Code?

OTHER TIPS

If you are using Linux, you can check the code out by issuing such a command:

svn co https://gdata-objectivec-client.googlecode.com/svn/trunk

Or if you're using Windows, download a SVN client program, such as Tortoise SVN, install it and follow this guide to download the code you want. And for MAC OSX, you can use this guide

The easiest way is to use the command:

svn checkout http://gdata-objectivec-client.googlecode.com/svn/trunk/ gdata-objectivec-client-read-only

Off course, you will have to install a SVN client first.

As it was said, the right way is to use a subversion client. It´s easy, install it and execute the command svn co http://...

You can also use some tools like wget or any other that allows you to download web files and folders.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top