list_folders_in_folder: Get list of folders from a folder

Description Usage Arguments Examples

View source: R/files.R

Description

Get list of folders from a folder

Usage

1
2
list_folders_in_folder(id = "root", page_size = NULL, page_token = NULL,
  order_by = NULL, spaces = NULL, corpus = NULL)

Arguments

id

ID of the drive folder

page_size

Optional. The maximum number of files to return per page. Acceptable values are 1 to 1000, inclusive. (Default: 100)

page_token

Optional. The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.

order_by

Optional. A comma-separated list of sort keys. Valid keys are 'createdTime', 'folder', 'modifiedByMeTime', 'modifiedTime', 'name', 'quotaBytesUsed', 'recency', 'sharedWithMeTime', 'starred', and 'viewedByMeTime'. Each key sorts ascending by default, but may be reversed with the 'desc' modifier. Example usage: ?order_by=folder,modifiedTime desc,name.

spaces

Optional. A comma-separated list of spaces to query within the corpus. Supported values are 'drive', 'appDataFolder' and 'photos'.

corpus

Optional. The source of files to list. Acceptable values are domain and user

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
library(googledrive)
authorize()

# Folder id is 0XXXXXXXX
list_folders_in_folder('0XXXXXXXX')

# If id is not specified, list of files would be obtained from root Google drive folder
list_folders_in_folder()

## End(Not run)

hairizuanbinnoorazman/googledrive documentation built on May 17, 2019, 2:25 p.m.