Class CreateFolderBatchArg
The create folder batch arg object
Inheritance
System.Object
    CreateFolderBatchArg
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class CreateFolderBatchArg
  Constructors
| Improve this Doc View SourceCreateFolderBatchArg(IEnumerable<String>, Boolean, Boolean)
Initializes a new instance of the CreateFolderBatchArg class.
Declaration
public CreateFolderBatchArg(IEnumerable<string> paths, bool autorename = false, bool forceAsync = false)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Collections.Generic.IEnumerable<System.String> | paths | List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once.  | 
      
| System.Boolean | autorename | If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict.  | 
      
| System.Boolean | forceAsync | Whether to force the create to happen asynchronously.  | 
      
Properties
| Improve this Doc 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 | 
|---|---|
| System.Boolean | 
ForceAsync
Whether to force the create to happen asynchronously.
Declaration
public bool ForceAsync { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
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 | 
|---|---|
| System.Collections.Generic.IList<System.String> |