> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# WdCopyOperationSummary

> WdCopyOperationSummary

# WdCopyOperationSummary

Contains summary progress information for the overall copy operation.

## Syntax

```cpp theme={null}
struct WdCopyOperationSummary
{
    uint64_t filesCompletedCount;
    uint64_t bytesTransferredCount;
    uint64_t totalFileCount;
    uint64_t totalByteCount;
};
```

### Members

`filesCompletedCount`\
Type: **uint64\_t**

The number of files that have completed copying.

`bytesTransferredCount`\
Type: **uint64\_t**

The total number of bytes transferred so far in the entire copy operation.

`totalFileCount`\
Type: **uint64\_t**

The total number of files to copy in the entire copy operation.

`totalByteCount`\
Type: **uint64\_t**

The total number of bytes to copy in the entire copy operation.

## Remarks

This structure is provided to the [WdCopyFilesStatusCallback](/reference/remoting/callbacks/wdcopyfilesstatuscallback) during a [WdRemoteCopy](/reference/remoting/functions/wdremotecopy) operation. It provides an overall summary of the copy operation progress, complementing the per-file progress information in [WdCopyFileProgressInfo](/reference/remoting/structs/wdcopyfileprogressinfo).

## Requirements

| Requirement                 | Value                |
| --------------------------- | -------------------- |
| **Header**                  | WdRemoteIteration.h  |
| **Library**                 | wdremoteapi.lib      |
| **Supported OS**            | Windows 11 and later |
| **Supported architectures** | x64, ARM64           |

## See also

* [WdRemoteCopy](/reference/remoting/functions/wdremotecopy)
* [WdCopyFilesStatusCallback](/reference/remoting/callbacks/wdcopyfilesstatuscallback)
* [WdCopyFileProgressInfo](/reference/remoting/structs/wdcopyfileprogressinfo)
* [XBOX PC Remote Iteration API](/reference/remoting/remoteiteration_members)


## Related topics

- [WdCopyFilesStatusCallback](/reference/remoting/callbacks/wdcopyfilesstatuscallback.md)
- [WdCopyFileProgressInfo](/reference/remoting/structs/wdcopyfileprogressinfo.md)
- [XBOX PC Remote Iteration API](/reference/remoting/remoteiteration_members.md)
- [WdCopyDirection](/reference/remoting/enums/wdcopydirection.md)
- [WdRemoteCopy](/reference/remoting/functions/wdremotecopy.md)
