SynchronizationEngineHostDeleteFileAsync Method |
Method to delete a file if it exists. Should not fail if the file does not 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 DeleteFileAsync(
string parentPath,
string fileName
)
Public MustOverride Function DeleteFileAsync (
parentPath As String,
fileName As String
) As Task
public:
virtual Task^ DeleteFileAsync(
String^ parentPath,
String^ fileName
) abstract
abstract DeleteFileAsync :
parentPath : string *
fileName : string -> Task
Parameters
- parentPath
- Type: SystemString
The path to the parent folder. - fileName
- Type: SystemString
The name of the file to delete.
Return Value
Type:
TaskAn awaitable object.
See Also