You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
481 B
18 lines
481 B
<?php
|
|
|
|
namespace Krizalys\Onedrive;
|
|
|
|
class NameConflictBehavior
|
|
{
|
|
// Fail behavior: fail the operation if the drive item exists.
|
|
const FAIL = 1;
|
|
|
|
// Rename behavior: rename the drive item if it already exists. The drive
|
|
// item is renamed as "<original name> 1", incrementing the trailing number
|
|
// until an available file name is discovered.
|
|
const RENAME = 2;
|
|
|
|
// Replace behavior: replace the drive item if it already exists.
|
|
const REPLACE = 3;
|
|
}
|