| 581 | } |
| 582 | |
| 583 | Status InvalidDirMoveToSubdir(const AzureLocation& src, const AzureLocation& dest) { |
| 584 | return Status::Invalid("Cannot Move to '", dest.all, "' and make '", src.all, |
| 585 | "' a sub-directory of itself."); |
| 586 | } |
| 587 | |
| 588 | Status DestinationParentPathNotFound(const AzureLocation& dest) { |
| 589 | return Status::IOError("The parent directory of the destination path '", dest.all, |
no test coverage detected