Query.list_files

Query.list_files(max_results=None, *, file_id_variable=None) → list<File>

Returns a list of files associated with the query results to the directory specified at path. Only relevant for queries against file index tables (the query result must also contain the file_id variable). If the query results contain multiple file id variables, must specify the file_id_variable parameter.

Parameters:

max_results : int, default None If specified, will only return up to max_results files

file_id_variable : str, default None The variable in the query results containing file ids. Only required if the query results contains more than one file id variable.

Returns:

list<File>

Last updated