Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creates folder with specified name.

Parameters 

 

Name TypeDescription

name

required

string

new folder name

parent

required

string

parent folder id

cb

optional

functioncallback function


Example

Code Block
languagejs
this.filecmdMakedir = function(name, parent, cb) {
  return _request({
    method: 'POST',
    data: {
      'name': name,
      'target': parent
    },
    url: '/file/makedir',
    callback: cb
  });
};

 

 

Quatrix JavaSctipt APIs QJA