> For the complete documentation index, see [llms.txt](https://chaoses-ib.gitbook.io/directory-opus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/scripting_reference/scripting_objects/getcopyqueuenamedata.md).

# GetCopyQueueNameData

If a [script add-in](/directory-opus/manual/scripting/script_add-ins.md)implements the [**OnGetCopyQueueName**](/directory-opus/manual/reference/scripting_reference/scripting_events/ongetcopyqueuename.md) event, the method receives a **GetCopyQueueNameData** object whenever a copy operation begins that uses automatically-managed copy queues (i.e. the *Automatically manage file copy queues* option on the [**Copying Files**](/directory-opus/manual/preferences/preferences_categories/file_operations/copying_files.md) page in Preferences is turned on).

| Property Name  | Return Type                                                                                         | Description                                                                                                                                                                                               |
| -------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| dest           | *object:*[**Path**](/directory-opus/manual/reference/scripting_reference/scripting_objects/path.md) | Returns a [**Path**](/directory-opus/manual/reference/scripting_reference/scripting_objects/path.md) object representing the destination path of the copy operation.                                      |
| desttab        | *object:*[**Tab**](/directory-opus/manual/reference/scripting_reference/scripting_objects/tab.md)   | Returns a [**Tab**](/directory-opus/manual/reference/scripting_reference/scripting_objects/tab.md) object representing the destination folder tab.                                                        |
| dest\_drives   | *string*                                                                                            | Returns a binary string indicating the physical drive indices that the destination path is located on (if any). For example, 00100000000000000000000000 indicates that drive C: is the destination drive. |
| move           | *bool*                                                                                              | Returns **True** if the operation is a move instead of a copy.                                                                                                                                            |
| name           | *string*                                                                                            | Returns the default queue name for this operation.                                                                                                                                                        |
| source         | *object:*[**Path**](/directory-opus/manual/reference/scripting_reference/scripting_objects/path.md) | Returns a [**Path**](/directory-opus/manual/reference/scripting_reference/scripting_objects/path.md) object representing the source path of the copy operation.                                           |
| sourcetab      | *object:*[**Tab**](/directory-opus/manual/reference/scripting_reference/scripting_objects/tab.md)   | Returns a [**Tab**](/directory-opus/manual/reference/scripting_reference/scripting_objects/tab.md) object representing the source folder tab.                                                             |
| source\_drives | *string*                                                                                            | Returns a binary string indicating the physical drive indices that the source path is located on (if any). For example, 00001000000000000000000000 indicates that drive E: is the source drive.           |
