addFolder            package:RGoogleDocs            R Documentation

_C_r_e_a_t_e _a_n_d _l_i_s_t _t_h_e _c_o_n_t_e_n_t_s _o_f _a _f_o_l_d_e_r

_D_e_s_c_r_i_p_t_i_o_n:

     These functions allow us to create a new folder in the Google Docs
     repository and also to  list the documents within a folder.

_U_s_a_g_e:

     addFolder(name, con, url = GoogleURLs["documents"])
     listFolder(doc, con = doc@connection, as.data.frame = FALSE, asXML = FALSE)

_A_r_g_u_m_e_n_t_s:

    name: a character string giving the name of the folder to be
          created.

     con: an authenticated connection to the Google Docs repository,
          for the writely service, not the wise service for
          spreadsheets.

     url: the URL where the request is to be posted. This is the
          default top-level of the repository.

     doc: the folder whose contents are to be listed. This can be a
          'GoogleDocumentDescription' returned by 'addFolder' or
          'getDocs' or can be a simple character string identifying the
          folder by name.

as.data.frame: a logical value indicating whether the information about
          the collection of documents should be  returned as a data
          frame or left as a list of 'GoogleDocumentDescription'
          objects.

   asXML: a logical value indicating whether the XML returned from the
          request to list the contents of the folder     should be 
          returned directly as a parsed XML document.

_V_a_l_u_e:

     'addFolder' returns an object of class 'GoogleFolder-class'.

     'listFolder' returns a list of 'GoogleDocumentDescription-class'
     objects or a data frame. See 'getDocs'.

_A_u_t_h_o_r(_s):

     Duncan Temple Lang

_S_e_e _A_l_s_o:

     'getGoogleDocsConnection' 'getDocs' 'moveToFolder'

