Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateFolderArg

The create folder arg object

Inheritance
object
CreateFolderArg
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 CreateFolderArg

Constructors

View Source

CreateFolderArg(string, bool)

Initializes a new instance of the CreateFolderArg class.

Declaration
public CreateFolderArg(string path, bool autorename = false)
Parameters
Type Name Description
string path

Path in the user's Dropbox to create.

bool autorename

If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict.

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

Path

Path in the user's Dropbox to create.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK