If you want to move a notebook into a folder that is not part of the official samples, then you may consider the following method:
Move notebooks using the rename function:
One method to move a notebook is to rename the notebook and include the relative path to the destination folder before the filename.
For example, assume that we have the following in the root folder
- A notebook called
Notebook2.ipynb
- A folder called
MyNotebooks
── MyNotebooks
│ └── Notebook1.ipynb
│
Notebook2.ipynb
To move Notebook2.ipynb
into MyNotebooks
, click on the notebook, then click rename, then rename the notebook as MyNotebooks/Notebook2.ipynb
Now you should see,
── MyNotebooks
│ └── Notebook1.ipynb
│ └── Notebook2.ipynb
Note: You will not be able to rename a notebook while there is an active session for the notebook. Make sure to stop the session first by clicking on Sessions
, then clicking Shutdown
on the specific notebook you want to move.