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.
Asked
Active
Viewed 246 times
0

Hemang
- 26,840
- 19
- 119
- 186
4 Answers
4
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
-
See question `tag`, I'm using `MAC OSX`. – Hemang Nov 01 '12 at 07:04
-
Oh, I'm sorry. : ) Then I guess you may want to download a SVN client for Mac such as [this](http://www.collab.net/downloads/subversion). The command to check out is not different. – Minh Danh Nov 01 '12 at 07:10
1
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.

Alexandru Chirila
- 2,274
- 5
- 29
- 40
1
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.

Chuidiang
- 1,055
- 6
- 13
-1
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
https://stackoverflow.com/questions/1192310/an-online-subversion-client
-
I downloaded wget and install it, then follow the command given in answer. It did all I want. :) – Hemang Nov 01 '12 at 07:46