> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/curator/llms.txt.
> For full documentation content, see https://docs.nvidia.com/nemo/curator/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/curator/_mcp/server.

# nemo_curator.utils.storage_utils

## Module Contents

### Functions

| Name                                                                   | Description                                                             |
| ---------------------------------------------------------------------- | ----------------------------------------------------------------------- |
| [`_get_local_path`](#nemo_curator-utils-storage_utils-_get_local_path) | Construct a full local path from a base path and additional components. |
| [`get_full_path`](#nemo_curator-utils-storage_utils-get_full_path)     | Construct a full path from a base path and additional components.       |

### API

```python
nemo_curator.utils.storage_utils._get_local_path(
    localpath: pathlib.Path,
    args: str = ()
) -> pathlib.Path
```

Construct a full local path from a base path and additional components.
Args:
localpath: The base local path.
\*args: Additional path components.
Returns:
The full local path as a Path object.

```python
nemo_curator.utils.storage_utils.get_full_path(
    path: str | pathlib.Path,
    args: str = ()
) -> pathlib.Path
```

Construct a full path from a base path and additional components.
Args:
path: The base path.
\*args: Additional path components.
Returns:
The full path as a StoragePrefix or Path object.