Class CreateFolderBatchArg
The create folder batch arg object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class CreateFolderBatchArg
Constructors
View SourceCreateFolderBatchArg(IEnumerable<string>, bool, bool)
Initializes a new instance of the CreateFolderBatchArg class.
Declaration
public CreateFolderBatchArg(IEnumerable<string> paths, bool autorename = false, bool forceAsync = false)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<string> | paths | List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once. |
| bool | autorename | If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. |
| bool | forceAsync | Whether to force the create to happen asynchronously. |
Properties
View SourceAutorename
If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict.
Declaration
public bool Autorename { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
ForceAsync
Whether to force the create to happen asynchronously.
Declaration
public bool ForceAsync { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Paths
List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once.
Declaration
public IList<string> Paths { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |