IPWorks Cloud 2020 Node.js Edition

Questions / Feedback?

ListSharedDrives Method

Lists shared drives that the current user is a member of.

Syntax

googledrive.listSharedDrives([callback])

Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for this method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

This method lists the shared drives which the current user is a member of.

Calling this method will fire the SharedDriveList event once for each shared drive, and will also populate the SharedDrive* properties.

If there are still more shared drives available to list when this method returns, the SharedDriveMarker property will be populated. Continue to call this method until SharedDriveMarker is empty to accumulate all pages of results in the SharedDrive* properties.

// SharedDriveList event handler.
googledrive.OnSharedDriveList += (s, e) => {
  Console.WriteLine(e.Name);
};

// List all shared drives the current user is a member of.
do {
  googledrive.ListSharedDrives();

  for (int i = 0; i < googledrive.SharedDrives.Count; i++) {
    // Process shared drives here.
  }
} while (!string.IsNullOrEmpty(googledrive.SharedDriveMarker));

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Node.js Edition - Version 20.0 [Build 8265]