Within the /notebooks directory, the folder name checkpoints is reserved by Jupyter. Avoid using checkpoints as a directory name in order to avoid any unexpected behavior.
Storage Architecture
Last verified 22 Jun 2026
Notebooks are a web-based Jupyter IDE with shared persistent storage for long-term development and inter-notebook collaboration, backed by accelerated compute.
The file manager does not represent the full file structure of the notebook. The full file structure of a notebook looks like this:
%%{init: {"themeVariables": {"edgeLabelBackground": "transparent"}} }%%
graph LR
HOME("~") --> ROOT("/")
ROOT --> NB("/notebooks")
ROOT --> DS("/datasets")
ROOT --> ST("/storage")
ROOT --> SYS("{ system files }")
NB --> IDE("{ notebook IDE }")
DS --> DATA("{ dataset files }")
ST --> STNB("/notebooks*")
ST --> TEAM("{ team storage }")
STNB --> USERNB("{ user notebooks }")
%% Styling aligned with DO theme
classDef doStyle fill:#0069ff,stroke:#0061EB,color:#fff
classDef neutralStyle fill:#E5E8ED,stroke:#ccc,color:#000
class HOME,ROOT doStyle
class NB,DS,ST,SYS,IDE,DATA,STNB,TEAM,USERNB neutralStyle
Main Components
- File Manager: Only contains files available in the Paperspace console. This corresponds to the
/notebooksdirectory, and these files persist across notebook sessions. - Storage: Shared persistent storage directory accessible to your entire team on a specific cluster. This corresponds to the
/storagedirectory, and is a method for sharing data across notebooks and users. For Private Workspace teams, other users cannot share the/storagevolume. - Paperspace Datasets: Team and public datasets that are mountable in the Paperspace console. This is ideal for large amounts of data and for sharing. Public datasets include popular datasets that Paperspace makes available out of the box such as MNIST.
To view and keep track of storage utilization, visit the Storage tab in your team settings. The amount of free storage accessible to a team is dictated by the Paperspace subscription tier. Any storage over these limits is charged. For more information, see pricing.