LIST
Applies to:  Databricks SQL 
 Databricks Runtime 10.4 LTS and above 
 Unity Catalog only
Lists the objects immediately contained at the URL.
Syntax
LIST url [ WITH ( CREDENTIAL credential_name ) ] [ LIMIT limit ]
Parameters
- 
url A STRINGliteral with the location of the cloud storage described as an absolute URL.
- 
An optional named credential used to access this URL. If you supply a credential it must be sufficient to access the URL. If you do not supply a credential the URL must be contained in an external location to to which you have access. 
- 
limit An optional INTEGERconstant used to limit the number of objects returned.In Databricks Runtime 10.4 LTS the default limit is 1001and only values between 1 and 1001 are supported.
Examples
SQL
> LIST 'gs://us-east-1-dev/some_dir' WITH (CREDENTIAL aws_some_dir) LIMIT 2
  path                               name   size modification_time
  ---------------------------------- ------ ---- -----------------
  gs://us-east-1-dev/some_dir/table1 table1 0    ...
  gs://us-east-1-dev/some_dir/table1 table1 0    ...