EndPoint List folder
Parameters
Parameter | Label | Required | Options | Description | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Path | Path | NO | ||||||||
Recursive | Recursive | NO |
|
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Name |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Type |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PathLower |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PathDisplay |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
ClientModified |
DT_DBTIMESTAMP
|
datetime
|
False |
||
ServerModified |
DT_DBTIMESTAMP
|
datetime
|
False |
||
Revision |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Size |
DT_I8
|
bigint
|
False |
||
IsDownloadable |
DT_BOOL
|
bit
|
False |
||
ContentHash |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use DropBox Connector in API Source component to read data or in API Destination component to read/write data:
List folder using API Source
DropBox
List folder

List folder using API Destination
DropBox
List folder

ODBC application
Use these SQL queries in your ODBC application data source:
List folder #1
Lists all files and folders within a folder
SELECT *
FROM list_folder
List folder #2
Lists all files and folders within a folder
SELECT *
FROM list_folder
WITH (Path='/MySubfolder'
,Recursive='true')
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List folder #1
Lists all files and folders within a folder
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM list_folder';
EXEC (@MyQuery) AT [LINKED_SERVER_TO_DROPBOX_IN_DATA_GATEWAY];
List folder #2
Lists all files and folders within a folder
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM list_folder
WITH (Path=''/MySubfolder''
,Recursive=''true'')';
EXEC (@MyQuery) AT [LINKED_SERVER_TO_DROPBOX_IN_DATA_GATEWAY];