Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateFolderBatchArg

The create folder batch arg object

Inheritance
object
CreateFolderBatchArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class CreateFolderBatchArg

Constructors

View Source

CreateFolderBatchArg(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 Source

Autorename

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
View Source

ForceAsync

Whether to force the create to happen asynchronously.

Declaration
public bool ForceAsync { get; protected set; }
Property Value
Type Description
bool
View Source

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>
  • View Source
In this article
Back to top Dropbox .NET SDK