class MoveOperations:
    """Specifies criteria for how to move files."""

    none = 0
    """Specifies no move operation is specified."""

    overwrite = 1
    """Specifies a file with the same name is to be overwritten if it exists."""
