> For the complete documentation index, see [llms.txt](https://docs.plenit.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plenit.com/docs-en/productos/file-storage/details/access.md).

# Access

Files are accessed through three coexisting paths.

To understand when each one fits, go to [Access and sharing.](/docs-en/productos/file-storage/concepts/access-and-sharing.md)

### Access methods

| Path              | Access                                         | When it fits                                   |
| ----------------- | ---------------------------------------------- | ---------------------------------------------- |
| Web               | From the browser, with credentials or by email | Mobility, from any device                      |
| Local drive (SMB) | Mounted as a network resource on the computer  | Work as you would on a traditional file server |
| Remote Desktop    | Integrated into the Remote Desktop environment | When the client already works there            |

### Mount the drive via SMB

You get the host, the share, and the user from the panel. The full step-by-step is in the How-to; here are the reference commands.

On Windows, with `net use`:

```c
net use Z: \\SERVER\SHARE /user:USER * /persistent:yes
```

* `Z:` is the drive letter you assign.
* `\\SERVER\SHARE` is the path provided by the panel.
* `*` causes the password to be requested without typing it in the command.
* `/persistent:yes` reconnects the drive at sign-in.

On Linux, mounting CIFS:

```bash
sudo mount -t cifs //SERVER/SHARE /mnt/files -o username=USER,vers=3.0
```

* `//SERVER/SHARE` is the path from the panel.
* `/mnt/files` is the local mount point.
* `vers=3.0` sets the SMB protocol version.

> #### 📘 Do not type the password in the command
>
> On Windows, use `*` so it is prompted on the fly.&#x20;
>
> On Linux, avoid putting the password inline: use a credential file with restricted permissions instead of leaving it in the shell history.

### Where to go next

* Sharing with third parties: [External sharing.](/docs-en/productos/file-storage/details/external-sharing.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.plenit.com/docs-en/productos/file-storage/details/access.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
