# file_copy_actions: OS File Copy Actions
## Documentation:
Copies a file on file system.
- Catalog: `FileSystem`
- Label: File Copy Actions
- Retrieve: False
## Table Columns
The columns of the table `file_copy_actions` are shown below. Each column has an SQL data type. A new non-null value must be provided for every required column at all times during insert.
| Name | Data Type | Label | Required | Documentation |
|---|:---:|---|:---:|---|
| `create_directory` | `varchar2` | Create directory | ☐ | Whether to create the directory when non-existing. |
| `file_path_source` | `varchar2` | File Name and Path for Source | ☑ | Path of file to copy. |
| `file_path_target` | `varchar2` | File Name and Path for Target | ☑ | Path of new file. |
| `ignore_error` | `varchar2` | Ignore Error | ☐ | Whether to ignore an error. |
| `overwrite_existing` | `varchar2` | Overwrite Existing | ☐ | Whether to overwrite an existing file. |