Enum CopyFile.Status
Possible return values from perfoming the copy operation
Namespace: Darwin
Assembly: CopyFile.dll
Syntax
public enum CopyFile.Status
Fields
| Name | Description |
|---|---|
| EACCESS | Search permission is denied for a component of the path prefix for the source or destination parameters; or write permission is denied for a component of the path prefix for the to parameter. |
| ECANCELED | The copy was cancelled by callback. |
| EEXISTS | The destination parameter to Copy already existed and was passed in with Flags.Excl |
| EINVAL | An invalid flag was passed to Copy for recursive copies, or a parameter is invalid |
| ENOENT | The source parameter to Copy does not exist. |
| ENOTMEM | Memory allocation failed |
| ENOTSUP | The source file was not a directory, symbolic link, or regular file, Flags.CloneForce was specified and file cloning is not supported or Flags.DataSparse was specified, sparse copying is not supported, and Flags.Data was not specified. |
| Ok | The operation was successful. |