# Upload operations

### Upload multiple files <a href="#upload-multiple-files" id="upload-multiple-files"></a>

Uploads multiple files from the Flow Server to the SFTP Server.

#### Parameters <a href="#parameters" id="parameters"></a>

| Parameter          | Description                                                                                                                                                                                          |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Local path         | Path where to upload files from.                                                                                                                                                                     |
| Local mask         | Mask used to filter which files to upload. Example "\*.txt". Regular expressions can also be used by prefixing with "regex:", example "regex:\[A\|B].\*" to list all files starting with "A" or "B". |
| Remote path        | Path where to upload the files.                                                                                                                                                                      |
| File transfer mode | Specifies what to do if the file already exists.                                                                                                                                                     |
| Case sensitive     | Specifies whether to ignore casing or not.                                                                                                                                                           |
| Recursive          | Specifies whether to also upload from subdirectories.                                                                                                                                                |

#### Output <a href="#output" id="output"></a>

No output.

#### Since <a href="#since" id="since"></a>

6.3

### Upload single file <a href="#upload-single-file" id="upload-single-file"></a>

Uploads a single file from the Flow Server to the SFTP Server.

#### Parameters <a href="#parameters" id="parameters"></a>

| Parameter          | Description                                                                                                                                                                                                 |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Local filename     | File to upload.                                                                                                                                                                                             |
| Remote filename    | Where to upload the file.                                                                                                                                                                                   |
| File transfer mode | Specifies what to do if the file already exists.                                                                                                                                                            |
| Restart position   | Can be used to resume a broken transfer operation. If set to a non-zero positive value, the file being transferred is read starting from that position and is written also starting from provided position. |

#### Output <a href="#output" id="output"></a>

No output.

#### Since <a href="#since" id="since"></a>

6.3

### Upload stream <a href="#upload-stream" id="upload-stream"></a>

Uploads the content of a Flow variable that contains a binary stream. This can for instance be used to upload data from a camera input.

#### Parameters <a href="#parameters" id="parameters"></a>

| Parameter          | Description                                                                                                                                                                                                 |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Local stream       | Stream to read data from.                                                                                                                                                                                   |
| Remote filename    | Where to upload the data.                                                                                                                                                                                   |
| File transfer mode | Specifies what to do if the file already exists.                                                                                                                                                            |
| Restart position   | Can be used to resume a broken transfer operation. If set to a non-zero positive value, the file being transferred is read starting from that position and is written also starting from provided position. |

#### Output <a href="#output" id="output"></a>

No output.

#### Since <a href="#since" id="since"></a>

6.3


---

# Agent Instructions: 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:

```
GET https://help.novacuraflow.com/6.12/development/flow-studio/connectors/communication/sftp/upload-operations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
