how to connect folder in jupyter notebook code example
Example 1: how to make jupyterlab see other directory
// To open jupyter lab with new directory
jupyter lab --notebook-dir "C:\name_of_dir"
Example 2: set the root directory when starting jupyter notebooks
1. From the command line (shell) run: jupyter notebook --generate-config
2. View the config file at: ~/.jupyter/jupyter_notebook_config.py
3. Change the line: c.NotebookApp.notebook_dir = '' to
c.NotebookApp.notebook_dir = '/path/to/desired/startup/directory'