views:

31

answers:

2

Hi,

Is there an online backup service (like Dropbox), which supports a C# or JAVA API? I want to use this as part of a build process to host my code offsite.

Thanks

+1  A: 

You can take a look at Amazon S3 API, it can be accessed with WebServices.


If you just want to store code and keep different versions you should use versionning system such as Subversion, git or mercurial.

Look at the links below for more informations.


Resources :

On the same topic :

Colin Hebert
A: 

If it is for code, why not use a hosted SVN like Assembla or Codesion?

SamMeiers