Edit

Share via


OneDriveStorageHelper.CreateFolderAsync Method

Definition

Overloads

CreateFolderAsync(String)

Ensure a folder exists at the folder path specified.

CreateFolderAsync(String, String)

Ensure a folder exists at the path specified.

CreateFolderAsync(String)

Ensure a folder exists at the folder path specified.

public System.Threading.Tasks.Task CreateFolderAsync(string folderName);
abstract member CreateFolderAsync : string -> System.Threading.Tasks.Task
override this.CreateFolderAsync : string -> System.Threading.Tasks.Task
Public Function CreateFolderAsync (folderName As String) As Task

Parameters

folderName
String

Returns

Waiting task until completion.

Implements

Applies to

CreateFolderAsync(String, String)

Ensure a folder exists at the path specified.

public System.Threading.Tasks.Task CreateFolderAsync(string folderName, string folderPath);
member this.CreateFolderAsync : string * string -> System.Threading.Tasks.Task
Public Function CreateFolderAsync (folderName As String, folderPath As String) As Task

Parameters

folderName
String

The name of the new folder.

folderPath
String

The path to create the new folder in.

Returns

A task.

Applies to