The function deletes an int32 array from the SD card using the specified id.
An SD card is required to use this function.
| In the function menu | On the diagram |
|---|---|
![]() |
![]() |
| Name | Value Type | Description |
|---|---|---|
id |
int32 |
File identifier.The file identifier is used to generate the file name on the SD card. For more on file name formatting, see the SD card article |
remove |
bool |
Array deletion trigger. The function starts on a rising edge and continues attempting until successful execution, an error, or receiving False on the remove input. |
| Name | Value Type | Description |
|---|---|---|
ended |
bool |
Function completion indicator: 1 — completed 0 — not completed |
status |
int32 |
Function status: 0 — idle 8 — deleting -1 — operation not supported -2 — operation unavailable -3 — file not accessible -5 — error |
0 -> 8 -> 0 // final status on success
| |
| *--> [-1 .. -5] // error during execution
|
*--> [-1 .. -5] // error before execution
None