> ## 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

包含整体复制操作的摘要进度信息。

## 语法

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

### 成员

`filesCompletedCount`\
类型：**uint64\_t**

已完成复制的文件数量。

`bytesTransferredCount`\
类型：**uint64\_t**

到目前为止，整个复制操作中已传输的字节总数。

`totalFileCount`\
类型：**uint64\_t**

整个复制操作中要复制的文件总数。

`totalByteCount`\
类型：**uint64\_t**

整个复制操作中要复制的字节总数。

## 备注

此结构体在 [WdRemoteCopy](/reference/remoting/functions/wdremotecopy) 操作期间提供给 [WdCopyFilesStatusCallback](/reference/remoting/callbacks/wdcopyfilesstatuscallback)。它提供了复制操作进度的整体摘要，作为 [WdCopyFileProgressInfo](/reference/remoting/structs/wdcopyfileprogressinfo) 中每个文件进度信息的补充。

## 要求

| 要求          | 值                   |
| ----------- | ------------------- |
| **头文件**     | WdRemoteIteration.h |
| **库**       | wdremoteapi.lib     |
| **支持的操作系统** | Windows 11 及更高版本    |
| **支持的体系结构** | x64、ARM64           |

## 另请参阅

* [WdRemoteCopy](/reference/remoting/functions/wdremotecopy)
* [WdCopyFilesStatusCallback](/reference/remoting/callbacks/wdcopyfilesstatuscallback)
* [WdCopyFileProgressInfo](/reference/remoting/structs/wdcopyfileprogressinfo)
* [XBOX PC 远程迭代 API](/reference/remoting/remoteiteration_members)


## Related topics

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