# UPLOAD PERSONAL FILE TO

Uploads a file to the personal space ([Cloud Portal](https://portal.singlestore.com) > Editor > Personal).

## Syntax

```
UPLOAD PERSONAL FILE TO '<filename>' 
   FROM '<local_path>' [ OVERWRITE ]
```

## Arguments

* `<filename>`: Name of the file to upload.
* `local_path`: Specifies the path to the file in the local directory.

## Remarks

* When the `OVERWRITE` clause is specified, any existing file with the same name in the personal space is overwritten.

## Example

The following command uploads a file to the personal space and overwrites any existing files with the same name:

```sql
UPLOAD PERSONAL FILE TO 'stats.csv'
FROM '/tmp/stats.csv' OVERWRITE;
```

***

Modified at: May 19, 2026

Source: [/cloud/reference/fusion-sql/upload-personal-file-to/](https://docs.singlestore.com/cloud/reference/fusion-sql/upload-personal-file-to/)

(An index of the documentation is available at /llms.txt)
