IRoboCopyResultsList - PCAssistSoftware/RoboSharp GitHub Wiki
Description:
Interface to provide Read-Only access to a RoboCopyResultsList.
Implemented Interfaces:
- IEnumerable<RoboCopyResults>
- ICloneable
Implemented By:
Properties:
| Property Name | Property Type | Description |
|---|---|---|
| DirectoriesStatistic | IStatistic | Sum of all DirectoryStatistics objects |
| FilesStatistic | IStatistic | Sum of all ByteStatistics objects |
| BytesStatistic | IStatistic | Sum of all FileStatistics objects |
| SpeedStatistic | ISpeedStatistic | Average of all SpeedStatistics objects. |
| Status | IRoboCopyCombinedExitStatus | Sum of all RoboCopyExitStatus objects |
| Count | int | Number of items in the List |
Events:
None
Methods:
| Method Name | Return Type | Description |
|---|---|---|
| GetSpeedStatistics | ISpeedStatistic[] | Get a snapshot of the FilesStatistic objects from this list. |
| GetStatuses | RoboCopyExitStatus[] | Get a snapshot of the FilesStatistic objects from this list. |
| GetFilesStatistics | IStatistic[] | Get a snapshot of the FilesStatistic objects from this list. |
| GetDirectoriesStatistics | IStatistic[] | Get a snapshot of the DirectoriesStatistic objects from this list. |
| GetByteStatistics | IStatistic[] | Get a snapshot of the ByteStatistics objects from this list. |