DeleteFiles. Delete Files from device.

Request

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

<in method="DeleteFiles">

<files>

<file name="##value"/>

</files>

</in>

</sdk>

 

<!--

Description:

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

    2.The files tag can contain multiple file subnodes.

    3. file.name (file name)

-->

Respond

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

<out method="DeleteFiles" result="##result">

<files>

<file name="##value" result="##result"/>

</files>

</out>

</sdk>

 

<!--

Description:

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

    2. out.method ="DeleteFiles"

    3. out.result (The error code refers to ErrorCode.)

    4. out.result : When the value is not "kSuccess", out has no child nodes.

    5. When the files specified to be deleted are correctly deleted, files have no child nodes, otherwise there are child nodes and carry corresponding error information.

    6. The files tag can contain multiple file subnodes.

    7. file.name (file name)

    8. file.result (The error code refers to ErrorCode.)

-->