FileOverwriteRuleEnum
FileOverwriteRuleEnum enumeration constants define rules to be used during export if a file with the same name already exists.
typedef enum {
FOR_Replace,
FOR_Append,
FOR_Rename
} FileOverwriteRuleEnum;
Elements
| Name | Description |
|---|---|
| FOR_Replace | Replace the existing file with the new one. |
| FOR_Append | Append the new file to the existing file. |
| FOR_Rename | Rename the new file. |
Used in
8/15/2023 1:19:30 PM