SynchronizationEngineHostCreateFolderAsync Method |
Method to create a sub-folder inside a parent. Should not fail if the folder does not already exist.
Namespace: Oracle.Cloud.Mobile.SynchronizationAssembly: Oracle.Cloud.Mobile.Synchronization.PCL (in Oracle.Cloud.Mobile.Synchronization.PCL.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic abstract Task CreateFolderAsync(
string parentPath,
string folderName
)
Public MustOverride Function CreateFolderAsync (
parentPath As String,
folderName As String
) As Task
public:
virtual Task^ CreateFolderAsync(
String^ parentPath,
String^ folderName
) abstract
abstract CreateFolderAsync :
parentPath : string *
folderName : string -> Task
Parameters
- parentPath
- Type: SystemString
The path to the parent folder. - folderName
- Type: SystemString
The name of the sub-folder to create.
Return Value
Type:
TaskAn awaitable object.
See Also