Skip to content

Instantly share code, notes, and snippets.

@dgundi
Created November 6, 2013 05:20
Show Gist options
  • Select an option

  • Save dgundi/7331310 to your computer and use it in GitHub Desktop.

Select an option

Save dgundi/7331310 to your computer and use it in GitHub Desktop.
var f = BCAPI.Models.FileSystem.Root.file('hello_world.txt');
var data = 'Hello World !';
f.upload(data).done(function () {
console.log('File uploaded succesfully');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment