Version 1.9 - Updated on 05/04/2017
Superclass: PCResourceAPIParams
Declared In: PCFOPSAPIParams.h
This class stores base parameters for all file and folder operations such as copy, rename, and move.
conflictsolve
@property (nonatomic,
copy) NSString *conflictsolve;
safe
parameter is set to true. If set to copy, a new file is written to the destination folder with a non-conflicting name. If not set, the operation is rolled back and returns 409 Conflict
.overrideRule
@property (nonatomic,
copy) NSString *overrideRule;
Discussion
Specifies what happens if a folder of the same name exists at the target path:
overwrite
, to overwrite the existing folder.modify
, to treat the new folder as a modification of the old folder.If the override
parameter is not set, the following algorithm is applied:
deleted
attribute set to true
, the folder is overwritten.deleted
attribute is false
or not set, the folder is modified.safe
@property (nonatomic,
copy) NSString *safe;
conflictsolve
parameter. Defaults to false, in which case the operation overwrites an existing file or folder of the same name.source
@property (nonatomic,
copy) NSString *source;
target
@property (nonatomic,
copy) NSString *target;
Copyright © 2015-2017, Verizon and/or its Licensors. All rights reserved.