File paths that contain a forward slash
To reference a file or folder name that contains a folder slash in the CADataConnector API, you must use a specific syntax.
To enable the CADataConnector API to differentiate between a forward slash that indicates folder structure and a forward slash that is part of a file or folder name, enclose each folder or file name in single or double quotation marks, separate each folder or file name in the path with a comma, and enclose the whole thing in square brackets.
In the following example, the path to a file named my/data.csv is my/folder-1/my/folder-2/my/data.csv.
data = CADataConnector.read_data(path=["my/folder-1","my/folder-2","my/data.csv"])