obj_uploaders(path)

Returns the list of users that have specifically been given permission to save or upload objects to the folder at the given path. (Available as of version 10.24)

Syntax

obj_uploaders(path)

Input

Argument Type Description
path text A path to an object (e.g., table, folder, query)

The path parameter can be a scalar value (e.g., pub.demo.retail.item) or the name of a column containing paths to objects.

If path is the empty string (e.g., ''), the function returns information corresponding to the root-level folder, which contains all of the top-level folders (e.g., pub, default, uploads).

Return Value

Returns a text value consisting of a comma-separated list corresponding to the users who have permission to save or upload objects to the folder at the specified path.

Returns an empty string if the path does not exist.

Example

The following example demonstrates the behavior of obj_uploaders(path) using the values in the example_path column specified via the <table> element.

<table cols="example_path">pub.demo.retail;
  pub.demo.retail.item;
  pub.demo.retail.foo;
  pub.doc.samples;
  foo;
  ;
</table>
<col name="example_path" format="width:35"/>
<willbe name="obj_uploaders_result" value="obj_uploaders(example_path)"/>

Note: When the value of the path parameter is equal to the empty string, the function returns information corresponding to the root-level folder in the 1010data Insights Platform, which contains all of the top-level folders (e.g., pub, default, uploads).