Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-engineering/notebook-utilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The ```notebookutils.fs.ls()``` API behaves differently when using relative path
notebookutils.fs.ls("Files/sample_datasets/public_holidays.parquet")
```

- **In a Python notebook**: The relative path is relative to the local file system's working directory, which by default is /home/trusted-service-user/work. Therefore, you should use the full path instead of a relative path ```notebookutils.fs.ls("/lakehouse/default/Files")``` to access the ```Files``` directory in the default Lakehouse.
- **In a Python notebook**: The relative path is relative to the local file system's working directory, which by default is /home/trusted-service-user/work. Therefore, you should use the full path instead of a relative path ```notebookutils.fs.ls("file:/lakehouse/default/Files")``` to access the ```Files``` directory in the default Lakehouse.

For example:
```python
Expand Down